Merge pull request #4036 from dokuwiki/issue4033
[dokuwiki.git] / _test / vendor / symfony / css-selector / Parser / Handler / WhitespaceHandler.php
blob21345e32c70da7ab3d6e7d758119d323ae00e60b
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\CssSelector\Parser\Handler;
14 use Symfony\Component\CssSelector\Parser\Reader;
15 use Symfony\Component\CssSelector\Parser\Token;
16 use Symfony\Component\CssSelector\Parser\TokenStream;
18 /**
19 * CSS selector whitespace handler.
21 * This component is a port of the Python cssselect library,
22 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
24 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
26 * @internal
28 class WhitespaceHandler implements HandlerInterface
30 /**
31 * {@inheritdoc}
33 public function handle(Reader $reader, TokenStream $stream): bool
35 $match = $reader->findPattern('~^[ \t\r\n\f]+~');
37 if (false === $match) {
38 return false;
41 $stream->push(new Token(Token::TYPE_WHITESPACE, $match[0], $reader->getPosition()));
42 $reader->moveForward(\strlen($match[0]));
44 return true;