/**
  * Create a new InstallerFormBuilder instance.
  *
  * @param Form $form
  */
 public function __construct(Form $form)
 {
     $this->dispatch(new SetFormOptions($form->getOptions()));
     parent::__construct($form);
 }
Ejemplo n.º 2
0
 /**
  * Get the form options.
  *
  * @return \Anomaly\Streams\Platform\Support\Collection
  */
 public function getFormOptions()
 {
     return $this->form->getOptions();
 }