/**
  * @param AddonRepository $addonRepository
  * @param Service $github
  */
 public function __construct(AddonRepository $addonRepository, Service $github)
 {
     parent::__construct($addonRepository);
     $this->github = $github;
 }
Example #2
0
 /**
  * @param AddonRepository $addonRepository
  * @param Service $bower
  */
 public function __construct(AddonRepository $addonRepository, Service $bower)
 {
     parent::__construct($addonRepository);
     $this->bower = $bower;
 }
Example #3
0
 /**
  * @param AddonRepository $addonRepository
  * @param Service $github
  * @param Cacher $cacher
  */
 public function __construct(AddonRepository $addonRepository, Service $github, Cacher $cacher)
 {
     parent::__construct($addonRepository);
     $this->github = $github;
     $this->cacher = $cacher;
 }