Automattic\WooCommerce\Vendor\Sabberworm\CSS

Settings::withLenientParsingpublicWC 1.0

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() code WC 10.4.3

public function withLenientParsing($bLenientParsing = true)
{
    $this->bLenientParsing = $bLenientParsing;
    return $this;
}