예제 #1
0
 public function removeChild(IModel $aModel)
 {
     unset($this->arrChildren[$aModel->name()]);
 }
예제 #2
0
파일: Model.php 프로젝트: JeCat/framework
 public function removeChild(IModel $aModel)
 {
     $arrChildrenContainer =& $this->childrenContainer();
     unset($arrChildrenContainer[$aModel->name()]);
 }