コード例 #1
0
ファイル: Phalcony.php プロジェクト: ovr/php-pm-reactor
 public function handleRequest(RequestInterface $request, ConnectionInterface $conn)
 {
     $response = $this->app->handle($request->getUrl(true)->getPath());
     $content = $response->getContent();
     $conn->send($content);
 }
コード例 #2
0
 /**
  * Shortcut to get Phalcon application's Di
  *
  * @return \Phalcon\DiInterface
  */
 public function getDi()
 {
     return $this->application->getDI();
 }