FluxBB\Server\AuthorizationServer::dispatch PHP Method

dispatch() public method

Resolve the request and return a response.
public dispatch ( Request $request ) : Response
$request Request
return Response
    public function dispatch(Request $request)
    {
        $this->authorize($request);
        return $this->next->dispatch($request);
    }