Beispiel #1
0
 public function __construct($app, Checker $checker, Destroyer $destroyer, Runner $runner)
 {
     parent::__construct();
     $this->app = $app;
     $this->checker = $checker;
     $this->runner = $runner;
     $this->destroyer = $destroyer;
 }
Beispiel #2
0
 public function __construct($app, Destroyer $destroyer)
 {
     parent::__construct();
     $this->app = $app;
     $this->destroyer = $destroyer;
 }
Beispiel #3
0
 public function __construct(Runner $runner, Checker $checker)
 {
     parent::__construct();
     $this->checker = $checker;
     $this->runner = $runner;
 }
Beispiel #4
0
 public function __construct(Checker $checker)
 {
     parent::__construct();
     $this->checker = $checker;
 }