コード例 #1
0
ファイル: Kernel.php プロジェクト: notadd/framework
 /**
  * Bootstrap the application for artisan commands.
  *
  * @return void
  */
 public function bootstrap()
 {
     if (!$this->app->hasBeenBootstrapped()) {
         $this->app->bootstrapWith($this->bootstrappers());
     }
     $this->app->loadDeferredProviders();
 }
コード例 #2
0
ファイル: Kernel.php プロジェクト: notadd/framework
 /**
  * @return void
  */
 public function bootstrap()
 {
     if (!$this->app->hasBeenBootstrapped()) {
         $this->app->bootstrapWith($this->bootstrappers());
     }
 }