Skip to content

Commit

Permalink
Add PSR-15 example
Browse files Browse the repository at this point in the history
  • Loading branch information
odan committed Jul 7, 2024
1 parent beb9fab commit 157b565
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/v4/concepts/middleware.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ request and the server response in a web application.
It intercepts, processes, and potentially alters HTTP requests
and responses as they pass through the application pipeline.

Middleware components can handle a variety of tasks such as authentication,
A middleware can handle a variety of tasks such as authentication,
authorization, logging, request modification, response transformation,
error handling, and more.

Each middleware performs its function and then passes control
to the next component in the chain, enabling a modular and reusable
to the next middleware in the chain, enabling a modular and reusable
approach to handling cross-cutting concerns in web applications.

## How does middleware work?
Expand Down

0 comments on commit 157b565

Please sign in to comment.