Example #1
0
 /**
  * @param RendererFactoryInterface $factory
  * @param FormInterface $form
  * @param integer $step
  */
 public function __construct(RendererFactoryInterface $factory, FormInterface $form, $step)
 {
     $this->form = $form;
     $this->step = intval($step);
     parent::__construct($factory);
 }
 /**
  * @param RendererFactoryInterface $factory
  * @param FieldInterface $field
  */
 public function __construct(RendererFactoryInterface $factory, FieldInterface $field)
 {
     $this->field = $field;
     parent::__construct($factory);
 }
Example #3
0
 /**
  * @param RendererFactoryInterface $factory
  * @param FormInterface $form
  */
 public function __construct(RendererFactoryInterface $factory, FormInterface $form)
 {
     $this->form = $form;
     parent::__construct($factory);
 }