Ejemplo n.º 1
0
 /**
  * @param FormFactoryInterface $factory
  * @param FilterUtility $util
  * @param EmailOwnerProviderStorage $emailOwnerProviderStorage
  */
 public function __construct(FormFactoryInterface $factory, FilterUtility $util, EmailOwnerProviderStorage $emailOwnerProviderStorage)
 {
     parent::__construct($factory, $util);
     $this->emailOwnerProviderStorage = $emailOwnerProviderStorage;
 }
Ejemplo n.º 2
0
 /**
  * Constructor
  *
  * @param FormFactoryInterface $factory
  * @param FilterUtility        $util
  * @param CatalogContext       $catalogContext
  * @param UserContext          $userContext
  */
 public function __construct(FormFactoryInterface $factory, FilterUtility $util, CatalogContext $catalogContext, UserContext $userContext)
 {
     parent::__construct($factory, $util);
     $this->catalogContext = $catalogContext;
     $this->userContext = $userContext;
 }
 /**
  * Constructor
  *
  * @param FormFactoryInterface $factory
  * @param FilterUtility        $util
  */
 public function __construct(FormFactoryInterface $factory, FilterUtility $util)
 {
     parent::__construct($factory, $util);
 }
Ejemplo n.º 4
0
 /**
  * Constructor
  *
  * @param FormFactoryInterface $factory
  * @param FilterUtility        $util
  * @param ManyRelationBuilder  $manyRelationBuilder
  */
 public function __construct(FormFactoryInterface $factory, FilterUtility $util, ManyRelationBuilder $manyRelationBuilder)
 {
     parent::__construct($factory, $util);
     $this->manyRelationBuilder = $manyRelationBuilder;
 }