AbstractExtension.php
2 years ago
AttributeMatchingExtension.php
2 years ago
CombinationExtension.php
2 years ago
ExtensionInterface.php
2 years ago
FunctionExtension.php
2 years ago
HtmlExtension.php
2 years ago
NodeExtension.php
2 years ago
PseudoClassExtension.php
2 years ago
index.php
2 years ago
ExtensionInterface.php
13 lines
| 1 | <?php |
| 2 | namespace MailPoetVendor\Symfony\Component\CssSelector\XPath\Extension; |
| 3 | if (!defined('ABSPATH')) exit; |
| 4 | interface ExtensionInterface |
| 5 | { |
| 6 | public function getNodeTranslators() : array; |
| 7 | public function getCombinationTranslators() : array; |
| 8 | public function getFunctionTranslators() : array; |
| 9 | public function getPseudoClassTranslators() : array; |
| 10 | public function getAttributeMatchingTranslators() : array; |
| 11 | public function getName() : string; |
| 12 | } |
| 13 |