12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- class sfWidgetFormSchemaForEach extends sfWidgetFormSchema
- {
-
- public function __construct(sfWidgetFormSchema $widget, $count, $options = array(), $attributes = array(), $labels = array())
- {
- parent::__construct(array_fill(0, $count, $widget), $options, $attributes, $labels);
- }
- }
|