コード例 #1
0
 /**
  * Get a parent node item
  *
  * @param CategoryItemEntity $child item object
  * @return CategoryItemEntity|null
  */
 public function parent(CategoryItemEntity $child)
 {
     $parent = $this->itemRepo->fetchAsc($child, 1);
     return array_shift($parent);
 }