Kernel
in
Table of Contents
- bootstrap() : void
- Bootstrap the application for HTTP requests.
- getApplication() : Application
- Get the Laravel application instance.
- handle() : Response
- Handle an incoming HTTP request.
- terminate() : void
- Perform any final actions for the request lifecycle.
Methods
bootstrap()
Bootstrap the application for HTTP requests.
public
bootstrap() : void
Return values
void —getApplication()
Get the Laravel application instance.
public
getApplication() : Application
Return values
Application —handle()
Handle an incoming HTTP request.
public
handle(Request $request) : Response
Parameters
- $request : Request
Return values
Response —terminate()
Perform any final actions for the request lifecycle.
public
terminate(Request $request, Response $response) : void