Explorer
home
/
zoteqbgb
/
public_html
/
vendor
/
symfony
/
css-selector
/
XPath
Location:
/home/zoteqbgb/public_html/vendor/symfony/css-selector/XPath
Root path:
/home/zoteqbgb/public_html/config/676626
Editing: TranslatorInterface.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\CssSelector\XPath; use Symfony\Component\CssSelector\Node\SelectorNode; /** * XPath expression translator 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 <jeanfrancois.simon@sensiolabs.com> * * @internal */ interface TranslatorInterface { /** * Translates a CSS selector to an XPath expression. */ public function cssToXPath(string $cssExpr, string $prefix = 'descendant-or-self::'): string; /** * Translates a parsed selector node to an XPath expression. */ public function selectorToXPath(SelectorNode $selector, string $prefix = 'descendant-or-self::'): string; }
Save maftirs
Upload
Start Upload
New File
Create File
New Folder
Create Folder
Directory Contents
Name
Size
Perms
Modified
Actions
Extension
-
0755
2024-09-25 19:21
ðï¸
Rename
Translator.php
7,316 bytes
0644
2024-09-25 19:21
âï¸
ðï¸
Rename
TranslatorInterface.php
1,019 bytes
0644
2024-09-25 19:21
âï¸
ðï¸
Rename
XPathExpr.php
2,393 bytes
0644
2024-09-25 19:21
âï¸
ðï¸
Rename
Chang
Apply