wp-user-avatar
/
third-party
/
vendor
/
symfony
/
css-selector
/
XPath
/
Extension
/
AbstractExtension.php
AbstractExtension.php
2 months ago
AttributeMatchingExtension.php
2 months ago
CombinationExtension.php
2 months ago
ExtensionInterface.php
2 months ago
FunctionExtension.php
2 months ago
HtmlExtension.php
2 months ago
NodeExtension.php
2 months ago
PseudoClassExtension.php
2 months ago
AbstractExtension.php
61 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\XPath\Extension; |
| 12 | |
| 13 | /** |
| 14 | * XPath expression translator abstract extension. |
| 15 | * |
| 16 | * This component is a port of the Python cssselect library, |
| 17 | * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect. |
| 18 | * |
| 19 | * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com> |
| 20 | * |
| 21 | * @internal |
| 22 | */ |
| 23 | abstract class AbstractExtension implements ExtensionInterface |
| 24 | { |
| 25 | /** |
| 26 | * {@inheritdoc} |
| 27 | */ |
| 28 | public function getNodeTranslators(): array |
| 29 | { |
| 30 | return []; |
| 31 | } |
| 32 | /** |
| 33 | * {@inheritdoc} |
| 34 | */ |
| 35 | public function getCombinationTranslators(): array |
| 36 | { |
| 37 | return []; |
| 38 | } |
| 39 | /** |
| 40 | * {@inheritdoc} |
| 41 | */ |
| 42 | public function getFunctionTranslators(): array |
| 43 | { |
| 44 | return []; |
| 45 | } |
| 46 | /** |
| 47 | * {@inheritdoc} |
| 48 | */ |
| 49 | public function getPseudoClassTranslators(): array |
| 50 | { |
| 51 | return []; |
| 52 | } |
| 53 | /** |
| 54 | * {@inheritdoc} |
| 55 | */ |
| 56 | public function getAttributeMatchingTranslators(): array |
| 57 | { |
| 58 | return []; |
| 59 | } |
| 60 | } |
| 61 |