wp-user-avatar
/
third-party
/
vendor
/
symfony
/
css-selector
/
Parser
/
Handler
/
HandlerInterface.php
CommentHandler.php
2 months ago
HandlerInterface.php
2 months ago
HashHandler.php
2 months ago
IdentifierHandler.php
2 months ago
NumberHandler.php
2 months ago
StringHandler.php
2 months ago
WhitespaceHandler.php
2 months ago
HandlerInterface.php
29 lines
| 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 | namespace ProfilePressVendor\Symfony\Component\CssSelector\Parser\Handler; |
| 12 | |
| 13 | use ProfilePressVendor\Symfony\Component\CssSelector\Parser\Reader; |
| 14 | use ProfilePressVendor\Symfony\Component\CssSelector\Parser\TokenStream; |
| 15 | /** |
| 16 | * CSS selector handler interface. |
| 17 | * |
| 18 | * This component is a port of the Python cssselect library, |
| 19 | * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. |
| 20 | * |
| 21 | * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> |
| 22 | * |
| 23 | * @internal |
| 24 | */ |
| 25 | interface HandlerInterface |
| 26 | { |
| 27 | public function handle(Reader $reader, TokenStream $stream): bool; |
| 28 | } |
| 29 |