FluentDOM\Nodes\Creator::__get PHP Method

__get() public method

public __get ( string $name ) : mixed
$name string
return mixed
    public function __get($name)
    {
        switch ($name) {
            case 'formatOutput':
                return $this->_document->{$name};
        }
        return NULL;
    }