aboutsummaryrefslogtreecommitdiff
path: root/lib/phpgt/cssxpath/src/NotYetImplementedException.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-08-18 11:14:40 +0200
committerGravatar GitHub <noreply@github.com> 2022-08-18 11:14:40 +0200
commit2acf3a4dd87af5c09fcf513517cb852ff6e909ce (patch)
tree6e1b687ad1f2359e652250f4d354645bc2f23c64 /lib/phpgt/cssxpath/src/NotYetImplementedException.php
parentea0d924985dc0c5aa089ed59c15282ea7e84c7a4 (diff)
CssXPath-StarSelector (#4506)
* CssXPath-StarSelector Add support for selectors such as `a[href*="example"]` https://developer.mozilla.org/docs/Web/CSS/Attribute_selectors Translated to `.//a[contains(@href,"example")]` Upstream PR: https://github.com/PhpGt/CssXPath/pull/181 * Upstream merged
Diffstat (limited to 'lib/phpgt/cssxpath/src/NotYetImplementedException.php')
-rw-r--r--lib/phpgt/cssxpath/src/NotYetImplementedException.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/phpgt/cssxpath/src/NotYetImplementedException.php b/lib/phpgt/cssxpath/src/NotYetImplementedException.php
index 39d12b3bc..70d9492cf 100644
--- a/lib/phpgt/cssxpath/src/NotYetImplementedException.php
+++ b/lib/phpgt/cssxpath/src/NotYetImplementedException.php
@@ -1,4 +1,4 @@
<?php
namespace Gt\CssXPath;
-class NotYetImplementedException extends CssXPathException {} \ No newline at end of file
+class NotYetImplementedException extends CssXPathException {}