PluginProbe
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses / 4.4.8
LearnPress – WordPress LMS Plugin for Create and Sell Online Courses v4.4.8
4.4.8 4.4.7 4.4.6 4.4.5 4.4.4 4.4.3 4.4.2 4.4.1 4.4.0 4.3.9.1 4.3.9 4.3.8 4.3.7 4.1.6.9 4.1.6.9.1 4.1.6.9.2 4.1.6.9.3 4.1.6.9.4 4.1.7 4.1.7.1 4.1.7.2 4.1.7.3 4.1.7.3.1 4.1.7.3.2 4.2.0 All 139 releases
← All changes | vendor/symfony/css-selector/XPath/Extension/ExtensionInterface.php +10 -1 4.3.9 → 4.4.8 View file →
@@ -10,13 +10,15 @@
10 10 */
11 11
12 12 namespace Symfony\Component\CssSelector\XPath\Extension;
13 13
14 +use Symfony\Component\CssSelector\XPath\XPathExpr;
15 +
14 16 /**
15 17 * XPath expression translator extension interface.
16 18 *
17 19 * This component is a port of the Python cssselect library,
18 - * which is copyright Ian Bicking, @see https://github.com/SimonSapin/cssselect.
20 + * which is copyright Ian Bicking, @see https://github.com/scrapy/cssselect.
19 21 *
20 22 * @author Jean-François Simon <[email protected]>
21 23 *
22 24 * @internal
@@ -58,8 +60,15 @@
58 60 *
59 61 * @return callable[]
60 62 */
61 63 public function getAttributeMatchingTranslators(): array;
64 +
65 + /**
66 + * Returns combination translators found inside ":has()" relation.
67 + *
68 + * @return array<string, callable(XPathExpr, XPathExpr): XPathExpr>
69 + */
70 + public function getRelativeCombinationTranslators(): array;
62 71
63 72 /**
64 73 * Returns extension name.
65 74 */