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