예제 #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;
 }
예제 #2
0
 public function __construct($app, Destroyer $destroyer)
 {
     parent::__construct();
     $this->app = $app;
     $this->destroyer = $destroyer;
 }
예제 #3
0
파일: Jables.php 프로젝트: Big-Shark/Jables
 public function __construct(Runner $runner, Checker $checker)
 {
     parent::__construct();
     $this->checker = $checker;
     $this->runner = $runner;
 }
예제 #4
0
파일: Check.php 프로젝트: Big-Shark/Jables
 public function __construct(Checker $checker)
 {
     parent::__construct();
     $this->checker = $checker;
 }