public function __construct(App $app)
 {
     parent::__construct($app);
     if ($app->isProduction()) {
         $this->providers = ['Illuminate\\Console\\ScheduleServiceProvider', 'Illuminate\\Queue\\ConsoleServiceProvider'];
     }
 }
Пример #2
0
 /**
  * {@inheritDoc}
  */
 public function __construct($app)
 {
     $this->defer = false;
     $this->providers = [SupportServiceProvider::class];
     parent::__construct($app);
 }