Orno\Route\Dispatcher::handleUriStrategy PHP 메소드

handleUriStrategy() 보호된 메소드

Handles response to URI Strategy based routes
protected handleUriStrategy ( string | array | Closure $controller, array $vars ) : Orno\Http\ResponseInterface
$controller string | array | Closure
$vars array
리턴 Orno\Http\ResponseInterface
    protected function handleUriStrategy($controller, array $vars)
    {
        $response = $this->invokeController($controller, $vars);
        return $this->determineResponse($response);
    }