/var/www/vhosts/nabawater/vendor/symfony/css-selector/Parser
NameSizeModeActions
Handler/-0775rm
Shortcut/-0775rm
Tokenizer/-0775rm
Parser.php121350664editdlrm
ParserInterface.php8310664editdlrm
Reader.php22230664editdlrm
Token.php28670664editdlrm
TokenStream.php35050664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/symfony/css-selector/Parser/ParserInterface.php (831B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\CssSelector\Parser; use Symfony\Component\CssSelector\Node\SelectorNode; /** * CSS selector parser interface. * * This component is a port of the Python cssselect library, * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. * * @author Jean-François Simon * * @internal */ interface ParserInterface { /** * Parses given selector source into an array of tokens. * * @param string $source * * @return SelectorNode[] */ public function parse($source); }