Latte\HtmlNode::__construct PHP Method

__construct() public method

public __construct ( $name, self $parentNode = NULL )
$parentNode self
    public function __construct($name, self $parentNode = NULL)
    {
        $this->name = $name;
        $this->parentNode = $parentNode;
        $this->isEmpty =& $this->empty;
    }
HtmlNode