예제 #1
0
 /**
  * Boot active extensions.
  *
  * @return $this
  */
 public function boot()
 {
     // Extension should be activated only if we're not running under
     // safe mode (or debug mode). This is to ensure that developer have
     // a way to disable broken extension without tempering the database.
     if (!($this->booted() || $this->status->is('safe'))) {
         // Avoid extension booting being called more than once.
         $this->booted = true;
         $this->registerActiveExtensions();
         // Boot are executed once all extension has been registered. This
         // would allow extension to communicate with other extension
         // without having to known the registration dependencies.
         $this->dispatcher->boot();
         $this->events->fire('orchestra.extension: booted');
     }
     return $this;
 }
예제 #2
0
 /**
  * Get application mode.
  *
  * @return
  */
 public function mode()
 {
     return $this->status->mode();
 }