コード例 #1
0
ファイル: Refresh.php プロジェクト: Big-Shark/Jables
 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
ファイル: Destroy.php プロジェクト: Big-Shark/Jables
 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;
 }