From f6e28ba146e049555ccaa686295b85651bc02a41 Mon Sep 17 00:00:00 2001 From: Phil Bennett Date: Mon, 25 Jan 2021 13:54:22 +0000 Subject: [PATCH] Fix typo in docs --- docs/4.x/http.md | 2 +- docs/5.x/http.md | 2 +- docs/unstable/http.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/4.x/http.md b/docs/4.x/http.md index 6ad13ce..76650f0 100644 --- a/docs/4.x/http.md +++ b/docs/4.x/http.md @@ -42,7 +42,7 @@ class SomeMiddleware implements MiddlewareInterface public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { // ... - return $handler->handler($request); + return $handler->handle($request); } } ~~~ diff --git a/docs/5.x/http.md b/docs/5.x/http.md index 6ad13ce..76650f0 100644 --- a/docs/5.x/http.md +++ b/docs/5.x/http.md @@ -42,7 +42,7 @@ class SomeMiddleware implements MiddlewareInterface public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { // ... - return $handler->handler($request); + return $handler->handle($request); } } ~~~ diff --git a/docs/unstable/http.md b/docs/unstable/http.md index 6ad13ce..76650f0 100644 --- a/docs/unstable/http.md +++ b/docs/unstable/http.md @@ -42,7 +42,7 @@ class SomeMiddleware implements MiddlewareInterface public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { // ... - return $handler->handler($request); + return $handler->handle($request); } } ~~~