Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
philipobenito committed Jan 25, 2021
1 parent bd9aba6 commit f6e28ba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/4.x/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class SomeMiddleware implements MiddlewareInterface
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
// ...
return $handler->handler($request);
return $handler->handle($request);
}
}
~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/5.x/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class SomeMiddleware implements MiddlewareInterface
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
// ...
return $handler->handler($request);
return $handler->handle($request);
}
}
~~~
Expand Down
2 changes: 1 addition & 1 deletion docs/unstable/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class SomeMiddleware implements MiddlewareInterface
public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface
{
// ...
return $handler->handler($request);
return $handler->handle($request);
}
}
~~~
Expand Down

0 comments on commit f6e28ba

Please sign in to comment.