compileValue() public method

Values in scssphp are typed by being wrapped in arrays, their format is typically: array(type, contents [, additional_contents]*) The input is expected to be reduced. This function will not work on things like expressions and variables.
public compileValue ( array $value ) : string
$value array
return string
Ejemplo n.º 1
0
 public function compileValue($value)
 {
     // Makes protected function public.
     return parent::compileValue($value);
 }