mirror of
https://github.com/smogon/pokemon-showdown-client.git
synced 2026-03-21 17:50:29 -05:00
21 lines
414 B
PHP
21 lines
414 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* @license https://opensource.org/licenses/Apache-2.0 Apache-2.0
|
|
*/
|
|
|
|
namespace Wikimedia\CSS\Grammar;
|
|
|
|
use EmptyIterator;
|
|
use Wikimedia\CSS\Objects\ComponentValueList;
|
|
|
|
/**
|
|
* Matcher that matches nothing
|
|
*/
|
|
class NothingMatcher extends Matcher {
|
|
/** @inheritDoc */
|
|
protected function generateMatches( ComponentValueList $values, $start, array $options ) {
|
|
return new EmptyIterator;
|
|
}
|
|
}
|