コード例 #1
0
ファイル: Application.php プロジェクト: TriTT/SecureCoding
 protected function dispatch(Request $request)
 {
     $method = $request->getMethod();
     $pathInfo = substr($request->getPathInfo(), strlen($this->basePath));
     return $this->handleDispatcherResponse($this->getDispatcher()->dispatch($method, $pathInfo), $request);
 }