Kernel
interface Kernel
Methods
void
bootstrap()
Bootstrap the application for HTTP requests.
void
prependMiddleware(string $middleware)
Add a new middleware to the beginning of the stack if it does not already exist.
array
getMiddlewareGroups()
Get the application's route middleware groups.
getApplication()
Get the application instance.
Details
at line 16
void
bootstrap()
Bootstrap the application for HTTP requests.
at line 21
Response
handle(Request $request)
Handle an incoming HTTP request.
at line 26
void
terminate(Request $request, Response $response)
Perform any final actions for the request lifecycle.
at line 33
Kernel
prependMiddleware(string $middleware)
Add a new middleware to the beginning of the stack if it does not already exist.
at line 40
array
getMiddlewareGroups()
Get the application's route middleware groups.
at line 45
Application
getApplication()
Get the application instance.