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

coerceForExpression() 보호된 메소드

Coerce color for expression
protected coerceForExpression ( array $value ) : array | null
$value array
리턴 array | null
    protected function coerceForExpression($value)
    {
        if ($color = $this->coerceColor($value)) {
            return $color;
        }
        return $value;
    }
Compiler