HttpRequestHandlerInterface
interface HttpRequestHandlerInterface implements RequestHandlerInterface (View source)
The interface for a request handler which handles and works with HTTP requests
Methods
Checks if the request handler can handle the current request.
Returns the priority - how eager the handler is to actually handle the request. An integer > 0 means "I want to handle this request" where "100" is default. "0" means "I am a fallback solution".
Returns the currently processed HTTP request
Details
void
handleRequest()
Handles a raw request
mixed
canHandleRequest()
Checks if the request handler can handle the current request.
int
getPriority()
Returns the priority - how eager the handler is to actually handle the request. An integer > 0 means "I want to handle this request" where "100" is default. "0" means "I am a fallback solution".
ServerRequestInterface
getHttpRequest()
Returns the currently processed HTTP request