示例#1
0
文件: Kernel.php 项目: Rinkana/Lirith
 /**
  * Init done? Continue to the deeper layers for the output.
  */
 protected function run()
 {
     $router = new Router();
     try {
         $responseData = $router->route($this->request);
         $this->response->setMessageBody($responseData);
     } catch (RouteNotFoundException $e) {
         $this->response->notFound();
     }
 }