comparison vendor/symfony/css-selector/Parser/Handler/NumberHandler.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children 1fec387a4317
comparison
equal deleted inserted replaced
-1:000000000000 0:4c8ae668cc8c
1 <?php
2
3 /*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12 namespace Symfony\Component\CssSelector\Parser\Handler;
13
14 use Symfony\Component\CssSelector\Parser\Reader;
15 use Symfony\Component\CssSelector\Parser\Token;
16 use Symfony\Component\CssSelector\Parser\TokenStream;
17 use Symfony\Component\CssSelector\Parser\Tokenizer\TokenizerPatterns;
18
19 /**
20 * CSS selector comment handler.
21 *
22 * This component is a port of the Python cssselect library,
23 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
24 *
25 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
26 *
27 * @internal
28 */
29 class NumberHandler implements HandlerInterface
30 {
31 /**
32 * @var TokenizerPatterns
33 */
34 private $patterns;
35
36 /**
37 * @param TokenizerPatterns $patterns
38 */
39 public function __construct(TokenizerPatterns $patterns)
40 {
41 $this->patterns = $patterns;
42 }
43
44 /**
45 * {@inheritdoc}
46 */
47 public function handle(Reader $reader, TokenStream $stream)
48 {
49 $match = $reader->findPattern($this->patterns->getNumberPattern());
50
51 if (!$match) {
52 return false;
53 }
54
55 $stream->push(new Token(Token::TYPE_NUMBER, $match[0], $reader->getPosition()));
56 $reader->moveForward(strlen($match[0]));
57
58 return true;
59 }
60 }