Lifecycle
Everything under Quiote\Event\Lifecycle.
Classes
Section titled “Classes”| Class | Description |
|---|---|
ActionAfterEvent | Emitted by ActionExecutor::execute() after an action (and its view) have run, carrying the resulting execution context. |
ActionBeforeEvent | Emitted by ActionExecutor::execute() just before an action runs. |
ExceptionCaughtEvent | Emitted by ErrorHandlingMiddleware whenever it catches an unhandled throwable, before rendering the error response. |
KernelBootEvent | Emitted at the end of Quiote::bootstrap(), once settings are loaded, plugins registered, and any requested contexts created. |
RequestMatchedEvent | Emitted by RoutingMiddleware immediately after a request is matched to a module/action, before the matched request is handed to the rest of the pipeline. |
ResponseSendingEvent | Emitted by Context::handle() once the pipeline has produced a response, just before it is returned to the runtime for emission. |
WorkerRequestCompletedEvent | Emitted once per request from Kernel’s worker-mode reset step — after WorkerManager::resetForNextRequest() (if worker mode is active), regardless of whether the request succeeded or the pipeline threw. |