コード例 #1
0
ファイル: Aggregator.php プロジェクト: zingular/forms
 /**
  * @param DataUnitComponentInterface $child
  */
 protected function storeValue(DataUnitComponentInterface $child)
 {
     // add the value of the component to the values of this container
     $this->values[$child->getName()] = $child->getValue();
     // also store the value the standard way
     parent::storeValue($child);
 }