SassScriptOperation::__get PHP Méthode

__get() public méthode

Getter function for properties
public __get ( string $name ) : mixed
$name string name of property
Résultat mixed value of the property
    public function __get($name)
    {
        if (property_exists($this, $name)) {
            return $this->{$name};
        } else {
            throw new SassScriptOperationException('Unknown property: ' . $name, SassScriptParser::$context->node);
        }
    }