FluxBB\Web\Dispatcher::getCallable PHP Method

getCallable() protected method

Get the class of the controller to be executed.
protected getCallable ( Request $request ) : string
$request Symfony\Component\HttpFoundation\Request
return string
    protected function getCallable(Request $request)
    {
        $method = $request->getMethod();
        $uri = $request->getPathInfo();
        return $this->router->getCallable($method, $uri);
    }