Esempio n. 1
0
 public function __construct(Factory $factory, Queue $queue)
 {
     parent::__construct();
     $this->factory = $factory;
     $this->queue = $queue;
 }
Esempio n. 2
0
 public function __construct(Factory $factory, StubGenerator $generator)
 {
     parent::__construct();
     $this->docit = $factory;
     $this->generator = $generator;
 }
Esempio n. 3
0
 /**
  * @param \Docit\Hooks\Github\Contracts\Factory $factory
  * @param \Docit\Core\Contracts\Factory        $docit
  */
 public function __construct(GithubFactory $factory, Docit $docit)
 {
     parent::__construct();
     $this->factory = $factory;
     $this->docit = $docit;
 }