Tale\Jade\Parser\Node::__set PHP Method

__set() public method

Redirects to the $_data storage and sets a key with that value there
public __set ( string $key, mixed $value )
$key string the name of the property to be written
$value mixed the value of that property
    public function __set($key, $value)
    {
        $this->data[$key] = $value;
    }