Inheritance: extends Illuminate\Console\Command
Exemple #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;
 }
Exemple #2
0
 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;
 }
Exemple #3
0
 public function __construct(Checker $checker)
 {
     parent::__construct();
     $this->checker = $checker;
 }
Exemple #4
0
 public function __construct($app, Destroyer $destroyer)
 {
     parent::__construct();
     $this->app = $app;
     $this->destroyer = $destroyer;
 }
Exemple #5
0
 public function __construct($app, TagIndexer $tags)
 {
     parent::__construct();
     $this->app = $app;
     $this->tags = $tags;
 }
Exemple #6
0
 public function __construct(Runner $runner)
 {
     parent::__construct();
     $this->runner = $runner;
 }
Exemple #7
0
 public function __construct($app, DependencyResolver $dependency)
 {
     parent::__construct();
     $this->app = $app;
     $this->dependency = $dependency;
 }
Exemple #8
0
 public function __construct($app, Filesystem $fs)
 {
     parent::__construct();
     $this->fs = $fs;
     $this->app = $app;
 }
Exemple #9
0
 public function __construct(Checker $checker, Prettifyer $prettifyer)
 {
     parent::__construct();
     $this->checker = $checker;
     $this->prettifyer = $prettifyer;
 }