Latte\HtmlNode::__construct PHP 메소드

__construct() 공개 메소드

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