Example #1
0
File: App.php Project: weew/app
 /**
  * Shutdown App.
  */
 public function shutdown()
 {
     if (!$this->started) {
         return;
     }
     $this->started = false;
     $this->kernel->shutdown();
     $this->eventer->dispatch(new KernelShutdownEvent($this->kernel));
     $this->eventer->dispatch(new AppShutdownEvent($this));
 }