Beispiel #1
0
 /**
  * Store each contained control's value under the control's specified key.
  */
 public function save()
 {
     /** @var FormControl $control */
     foreach ($this->controls as $control) {
         $control->save();
     }
     parent::save();
 }