| 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 |
|
| 12 |
namespace Symfony\Component\CssSelector\XPath\Extension; |
| 13 |
|
| 14 |
/** |
| 15 |
* XPath expression translator abstract extension. |
| 16 |
* |
| 17 |
* This component is a port of the Python cssselect library, |
| 18 |
* which is copyright Ian Bicking, @see https://github.com/scrapy/cssselect. |
| 19 |
* |
| 20 |
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> |
| 21 |
* |
| 22 |
* @internal |
| 23 |
*/ |
| 24 |
abstract class AbstractExtension implements ExtensionInterface |
| 25 |
{ |
| 26 |
public function getNodeTranslators(): array |
| 27 |
{ |
| 28 |
return []; |
| 29 |
} |
| 30 |
|
| 31 |
public function getCombinationTranslators(): array |
| 32 |
{ |
| 33 |
return []; |
| 34 |
} |
| 35 |
|
| 36 |
public function getFunctionTranslators(): array |
| 37 |
{ |
| 38 |
return []; |
| 39 |
} |
| 40 |
|
| 41 |
public function getPseudoClassTranslators(): array |
| 42 |
{ |
| 43 |
return []; |
| 44 |
} |
| 45 |
|
| 46 |
public function getAttributeMatchingTranslators(): array |
| 47 |
{ |
| 48 |
return []; |
| 49 |
} |
| 50 |
|
| 51 |
public function getRelativeCombinationTranslators(): array |
| 52 |
{ |
| 53 |
return []; |
| 54 |
} |
| 55 |
} |
| 56 |
|