public function __construct(FormValidators $validators, Licenses $licenses, Addon $addon)
 {
     $this->validators = $validators;
     $this->licenses = $licenses;
     $this->addon = $addon;
     parent::__construct();
 }
Ejemplo n.º 2
0
 public function __construct(AddonManageFacade $manager, RepositoryImporterManager $importerManager, Tags $tags, FormValidators $validators, Licenses $licenses, array $descriptionFormats = array())
 {
     $this->manager = $manager;
     $this->importerManager = $importerManager;
     $this->tags = $tags;
     $this->validators = $validators;
     $this->licenses = $licenses;
     $this->descriptionFormats = $descriptionFormats;
     parent::__construct();
 }
Ejemplo n.º 3
0
 public function __construct(Tags $tags)
 {
     $this->tags = $tags;
     parent::__construct();
 }