コード例 #1
0
ファイル: Dispatcher.php プロジェクト: cloudstash/point
 /**
  * @return string
  */
 protected function getCurrentRequestMethod()
 {
     return Server::Instance()->getRequestMethod();
 }
コード例 #2
0
ファイル: HttpRequest.php プロジェクト: cloudstash/point
 protected function __construct()
 {
     $this->get = $_GET;
     $this->post = $_POST;
     $this->server = Server::Instance();
 }