12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Symfony\Component\CssSelector\XPath;
- use Symfony\Component\CssSelector\Node\SelectorNode;
- interface TranslatorInterface
- {
-
- public function cssToXPath(string $cssExpr, string $prefix = 'descendant-or-self::'): string;
-
- public function selectorToXPath(SelectorNode $selector, string $prefix = 'descendant-or-self::'): string;
- }
|