/home/techb158/dev.balacoffee.com/vendor/sabberworm/php-css-parser/src
NameSizeModeActions
Comment/-0755rm
CSSList/-0755rm
Parsing/-0755rm
Property/-0755rm
Rule/-0755rm
RuleSet/-0755rm
Value/-0755rm
OutputFormat.php78350644editdlrm
OutputFormatter.php53420644editdlrm
Parser.php13270644editdlrm
Renderable.php2960644editdlrm
Settings.php19590644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/sabberworm/php-css-parser/src/Settings.php (1959B)
bMultibyteSupport = extension_loaded('mbstring'); } /** * @return self new instance */ public static function create() { return new Settings(); } /** * @param bool $bMultibyteSupport * * @return self fluent interface */ public function withMultibyteSupport($bMultibyteSupport = true) { $this->bMultibyteSupport = $bMultibyteSupport; return $this; } /** * @param string $sDefaultCharset * * @return self fluent interface */ public function withDefaultCharset($sDefaultCharset) { $this->sDefaultCharset = $sDefaultCharset; return $this; } /** * @param bool $bLenientParsing * * @return self fluent interface */ public function withLenientParsing($bLenientParsing = true) { $this->bLenientParsing = $bLenientParsing; return $this; } /** * @return self fluent interface */ public function beStrict() { return $this->withLenientParsing(false); } }