Automattic\WooCommerce\Vendor\Sabberworm\CSS
Settings::withDefaultCharset
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() Settings::withDefaultCharset WC 10.8.1
public function withDefaultCharset($sDefaultCharset)
{
$this->sDefaultCharset = $sDefaultCharset;
return $this;
}