Automattic\WooCommerce\Vendor\Sabberworm\CSS
Settings::withDefaultCharset
Sets the charset to be used if the CSS does not contain an @charset declaration.
Method of the class: Settings{}
No Hooks.
Returns
self. fluent interface
Usage
$Settings = new Settings(); $Settings->withDefaultCharset( $sDefaultCharset );
- $sDefaultCharset(string) (required)
- .
Settings::withDefaultCharset() Settings::withDefaultCharset code WC 10.5.0
public function withDefaultCharset($sDefaultCharset)
{
$this->sDefaultCharset = $sDefaultCharset;
return $this;
}