Leafo\ScssPhp\Compiler::compileSelector PHP 메소드

compileSelector() 보호된 메소드

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