SassScriptFunction::__construct PHP Method

__construct() public method

SassScriptFunction constructor
public __construct ( string $name, array $args ) : SassScriptFunction
$name string name of the function
$args array arguments for the function
return SassScriptFunction
    public function __construct($name, $args)
    {
        $this->name = $name;
        $this->args = $args;
    }