Automattic\WooCommerce\Vendor\Sabberworm\CSS
Settings::withLenientParsing
Configures whether the parser should silently ignore invalid rules.
Method of the class: Settings{}
No Hooks.
Returns
self. fluent interface
Usage
$Settings = new Settings(); $Settings->withLenientParsing( $bLenientParsing );
- $bLenientParsing(true|false)
- .
Default:true
Settings::withLenientParsing() Settings::withLenientParsing code WC 10.4.3
public function withLenientParsing($bLenientParsing = true)
{
$this->bLenientParsing = $bLenientParsing;
return $this;
}