예제 #1
0
파일: Node.php 프로젝트: mozzymoz/awl
 /**
  * @return $this
  */
 public function start()
 {
     $this->parents[] = $this->current;
     $this->current = $this->current->getLastChild();
     return $this;
 }