if ($outputStyle === OutputStyle::COMPRESSED ||
$outputStyle === OutputStyle::EXPANDED
) { $this->compiler->
setOutputStyle($outputStyle);
} $importPaths =
$config->
getValue('importPaths'
);
if ($importPaths !== null
) { $this->compiler->
setImportPaths($importPaths);
} $css =
$this->compiler->
compileString($scss,
$path)->
getCss();
$this->
reset(); // Reset compiler for multiple usage
return $css;
}}