summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/AbstractStrategy.php2
-rw-r--r--src/Contracts/Strategy.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/AbstractStrategy.php b/src/AbstractStrategy.php
index 54b78c1..29d9651 100644
--- a/src/AbstractStrategy.php
+++ b/src/AbstractStrategy.php
@@ -13,7 +13,7 @@ use Psr\Http\Message\ServerRequestInterface;
abstract class AbstractStrategy implements Strategy
{
/**
- * @param Middleware[] $middlewares
+ * @param Middleware[] $middlewares
* @param callable(RequestInterface): ResponseInterface $handler
*/
public function runMiddleware(
diff --git a/src/Contracts/Strategy.php b/src/Contracts/Strategy.php
index fa41819..7dea459 100644
--- a/src/Contracts/Strategy.php
+++ b/src/Contracts/Strategy.php
@@ -11,7 +11,7 @@ use Psr\Http\Message\ResponseInterface;
interface Strategy
{
/**
- * @param Middleware[] $middlewares
+ * @param Middleware[] $middlewares
* @param callable(RequestInterface): ResponseInterface $handler
*/
public function runMiddleware(