Пример #1
0
 /**
  * Create a new server command instance.
  *
  * @param  \Illuminate\Foundation\Application $app
  * @return void
  */
 public function __construct($app)
 {
     parent::__construct();
     // TODO: Remove after beta
     ini_set('xdebug.var_display_max_depth', 9);
     $this->app = $app;
     $this->out = new Output();
 }
Пример #2
0
 /**
  * Create a new install command instance.
  *
  * @param  string $namespace
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->out = new Output();
 }
Пример #3
0
 /**
  * Create a new install command instance.
  *
  * @param  string $namespace
  * @return void
  */
 public function __construct($namespace)
 {
     parent::__construct();
     $this->appNamespace = rtrim($namespace, '\\');
     $this->out = new Output();
 }