Skip to content

Commit

Permalink
Fix typo in lifecycle.md (#9492)
Browse files Browse the repository at this point in the history
  • Loading branch information
theozebua authored Mar 13, 2024
1 parent 474701c commit 51c2103
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lifecycle.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Next, the incoming request is sent to either the HTTP kernel or the console kern

The HTTP kernel defines an array of `bootstrappers` that will be run before the request is executed. These bootstrappers configure error handling, configure logging, [detect the application environment](/docs/{{version}}/configuration#environment-configuration), and perform other tasks that need to be done before the request is actually handled. Typically, these classes handle internal Laravel configuration that you do not need to worry about.

The HTTP kernel is also responsible for passing the request though the application's middleware stack. These middleware handle reading and writing the [HTTP session](/docs/{{version}}/session), determining if the application is in maintenance mode, [verifying the CSRF token](/docs/{{version}}/csrf), and more. We'll talk more about these soon.
The HTTP kernel is also responsible for passing the request through the application's middleware stack. These middleware handle reading and writing the [HTTP session](/docs/{{version}}/session), determining if the application is in maintenance mode, [verifying the CSRF token](/docs/{{version}}/csrf), and more. We'll talk more about these soon.

The method signature for the HTTP kernel's `handle` method is quite simple: it receives a `Request` and returns a `Response`. Think of the kernel as being a big black box that represents your entire application. Feed it HTTP requests and it will return HTTP responses.

Expand Down

0 comments on commit 51c2103

Please sign in to comment.