예제 #1
0
파일: Leaf.php 프로젝트: talesoft/tale-tree
 /**
  * @return int|null
  */
 public function getIndex()
 {
     if ($this->parent === null) {
         return null;
     }
     return $this->parent->getChildIndex($this);
 }