Leafo\ScssPhp\Compiler::compileSelector PHP Method

compileSelector() protected method

Compile selector to string; self(&) should have been replaced by now
protected compileSelector ( array $selector ) : string
$selector array
return string
    protected function compileSelector($selector)
    {
        if (!is_array($selector)) {
            return $selector;
            // media and the like
        }
        return implode(' ', array_map([$this, 'compileSelectorPart'], $selector));
    }
Compiler