예제 #1
0
 public function add(FormInterface $child)
 {
     $name = $child->getName();
     $this->children[$name] = $child;
     $child->parent = $this;
 }
예제 #2
0
파일: Form.php 프로젝트: websitetest/c9
 public function add(FormInterface $child, $type = null, array $options = array())
 {
     $this->children[$child->getName()];
 }