示例#1
0
文件: Node.php 项目: mozzymoz/awl
 /**
  * @return $this
  */
 public function start()
 {
     $this->parents[] = $this->current;
     $this->current = $this->current->getLastChild();
     return $this;
 }