Exemplo n.º 1
0
 /**
  * Sets up the tag of this node.
  *
  * @param $tag
  */
 public function __construct($tag)
 {
     if (!$tag instanceof Tag) {
         $tag = new Tag($tag);
     }
     $this->tag = $tag;
     parent::__construct();
 }