Merge pull request #4036 from dokuwiki/issue4033
[dokuwiki.git] / _test / vendor / symfony / css-selector / Parser / Handler / HandlerInterface.php
blob9ec714d547721445037fc4ef07a9741bb6061f9a
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\TokenStream;
17 /**
18 * CSS selector handler interface.
20 * This component is a port of the Python cssselect library,
21 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
23 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
25 * @internal
27 interface HandlerInterface
29 public function handle(Reader $reader, TokenStream $stream): bool;