Ejemplo n.º 1
0
 /**
  * @inheritdoc
  */
 public function removeChildren($parent)
 {
     $result = parent::removeChildren($parent);
     if ($this->_children !== null) {
         unset($this->_children[$parent->name]);
     }
     $this->invalidate(self::PART_CHILDREN);
     return $result;
 }