Inheritance: extends Illuminate\Console\Command
コード例 #1
0
ファイル: Refresh.php プロジェクト: bobfridley/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
ファイル: Jables.php プロジェクト: hedronium/jables
 public function __construct(Runner $runner, Loader $loader, DependencyResolver $dependency, TagIndexer $tags)
 {
     parent::__construct();
     $this->runner = $runner;
     $this->loader = $loader;
     $this->dependency = $dependency;
     $this->tags = $tags;
 }
コード例 #3
0
ファイル: Check.php プロジェクト: bobfridley/Jables
 public function __construct(Checker $checker)
 {
     parent::__construct();
     $this->checker = $checker;
 }
コード例 #4
0
ファイル: Destroy.php プロジェクト: bobfridley/Jables
 public function __construct($app, Destroyer $destroyer)
 {
     parent::__construct();
     $this->app = $app;
     $this->destroyer = $destroyer;
 }
コード例 #5
0
ファイル: Tags.php プロジェクト: hedronium/jables
 public function __construct($app, TagIndexer $tags)
 {
     parent::__construct();
     $this->app = $app;
     $this->tags = $tags;
 }
コード例 #6
0
ファイル: CreateTable.php プロジェクト: hedronium/jables
 public function __construct(Runner $runner)
 {
     parent::__construct();
     $this->runner = $runner;
 }
コード例 #7
0
ファイル: Dependencies.php プロジェクト: hedronium/jables
 public function __construct($app, DependencyResolver $dependency)
 {
     parent::__construct();
     $this->app = $app;
     $this->dependency = $dependency;
 }
コード例 #8
0
ファイル: CreateFolder.php プロジェクト: hedronium/jables
 public function __construct($app, Filesystem $fs)
 {
     parent::__construct();
     $this->fs = $fs;
     $this->app = $app;
 }
コード例 #9
0
ファイル: Prettify.php プロジェクト: hedronium/jables
 public function __construct(Checker $checker, Prettifyer $prettifyer)
 {
     parent::__construct();
     $this->checker = $checker;
     $this->prettifyer = $prettifyer;
 }