Automattic\WooCommerce\Vendor\Sabberworm\CSS

Settings::withDefaultCharsetpublicWC 1.0

Sets the charset to be used if the CSS does not contain an @charset declaration.

Метод класса: Settings{}

Хуков нет.

Возвращает

self. fluent interface

Использование

$Settings = new Settings();
$Settings->withDefaultCharset( $sDefaultCharset );
$sDefaultCharset(строка) (обязательный)
.

Код Settings::withDefaultCharset() WC 10.8.1

public function withDefaultCharset($sDefaultCharset)
{
    $this->sDefaultCharset = $sDefaultCharset;
    return $this;
}