Ejemplo n.º 1
0
 /**
  * @return MenuItem[]
  */
 public function getChildren()
 {
     $children = array();
     foreach ($this->items->toArray() as $item) {
         if (is_null($item->getParent())) {
             array_push($children, $item);
         }
     }
     return $children;
 }