getCallable() 공개 메소드

public getCallable ( $method, $uri )
예제 #1
0
파일: Dispatcher.php 프로젝트: fluxbb/core
 /**
  * Get the class of the controller to be executed.
  *
  * @param \Symfony\Component\HttpFoundation\Request $request
  * @return string
  */
 protected function getCallable(Request $request)
 {
     $method = $request->getMethod();
     $uri = $request->getPathInfo();
     return $this->router->getCallable($method, $uri);
 }