FluentDOM\Nodes\Creator::__set PHP Method

__set() public method

public __set ( string $name, mixed $value )
$name string
$value mixed
    public function __set($name, $value)
    {
        switch ($name) {
            case 'formatOutput':
                $this->_document->{$name} = $value;
                return;
        }
        $this->{$name} = $value;
    }