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

libToLowerCase() 보호된 메소드

protected libToLowerCase ( $args )
    protected function libToLowerCase($args)
    {
        $string = $this->coerceString($args[0]);
        $stringContent = $this->compileStringContent($string);
        $string[2] = [mb_strtolower($stringContent)];
        return $string;
    }
Compiler