コード例 #1
0
ファイル: Router.php プロジェクト: Insidexa/Framework
 /**
  * Run parsing url and change scheme, method
  */
 public function run()
 {
     $this->urlScheme = $this->request->getScheme();
     $this->method = $this->request->getMethod();
     $this->parseUrl();
 }