Files
FreshRSS/lib/phpgt/cssxpath/src/CssXPathException.php
Alexandre Alapetite 2acf3a4dd8 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
2022-08-18 11:14:40 +02:00

7 lines
105 B
PHP

<?php
namespace Gt\CssXPath;
use RuntimeException;
class CssXPathException extends RuntimeException {}