public static function CssSelector::disableHtmlExtension in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/css-selector/CssSelector.php \Symfony\Component\CssSelector\CssSelector::disableHtmlExtension()
Disables the HTML extension.
2 calls to CssSelector::disableHtmlExtension()
- CrawlerTest::testFilterWithMultipleNamespaces in vendor/
symfony/ dom-crawler/ Tests/ CrawlerTest.php - CrawlerTest::testFilterWithNamespace in vendor/
symfony/ dom-crawler/ Tests/ CrawlerTest.php
File
- vendor/
symfony/ css-selector/ CssSelector.php, line 108
Class
- CssSelector
- CssSelector is the main entry point of the component and can convert CSS selectors to XPath expressions.
Namespace
Symfony\Component\CssSelectorCode
public static function disableHtmlExtension() {
self::$html = false;
}