Merge pull request #4036 from dokuwiki/issue4033
[dokuwiki.git] / _test / vendor / symfony / css-selector / XPath / Extension / AbstractExtension.php
blob44e0035a78757939ca974961cfbf7956455ac479
1 <?php
3 /*
4 * This file is part of the Symfony package.
6 * (c) Fabien Potencier <fabien@symfony.com>
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
12 namespace Symfony\Component\CssSelector\XPath\Extension;
14 /**
15 * XPath expression translator abstract extension.
17 * This component is a port of the Python cssselect library,
18 * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
20 * @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
22 * @internal
24 abstract class AbstractExtension implements ExtensionInterface
26 /**
27 * {@inheritdoc}
29 public function getNodeTranslators(): array
31 return [];
34 /**
35 * {@inheritdoc}
37 public function getCombinationTranslators(): array
39 return [];
42 /**
43 * {@inheritdoc}
45 public function getFunctionTranslators(): array
47 return [];
50 /**
51 * {@inheritdoc}
53 public function getPseudoClassTranslators(): array
55 return [];
58 /**
59 * {@inheritdoc}
61 public function getAttributeMatchingTranslators(): array
63 return [];