Hooks
This hook is called as soon as each request is received.
When you return an object from the hook, the object is merged into the context for subsequent hooks and handlers.
;
It is possible to "short-circuit" the request life cycle by returning a Response instance. Zeta will immediately respond with the returned response, skipping all subsequent hooks and the handler (other than onGlobalAfterResponse).
A good example of this is a CORS plugin. It sets the Access-Control-Allow-* headers for all requests and returns an OK response to all OPTIONS requests.
;