Exemplo n.º 1
0
 /**
  * Get whether the node is immediate children of other node.
  *
  * @param self $other
  *
  * @return bool
  */
 public function isChildOf(self $other)
 {
     return $this->getParentId() == $other->getKey();
 }