Leafo\ScssPhp\Compiler::setFormatter PHP Method

setFormatter() public method

Set formatter
public setFormatter ( string $formatterName )
$formatterName string
    public function setFormatter($formatterName)
    {
        $this->formatter = $formatterName;
    }

Usage Example

Beispiel #1
0
 public function setProductionMode($isProduction)
 {
     if ($isProduction) {
         $this->compiler->setLineNumberStyle(0);
         $this->compiler->setFormatter(CompressedOutput::class);
     }
 }
All Usage Examples Of Leafo\ScssPhp\Compiler::setFormatter
Compiler