summaryrefslogtreecommitdiff
path: root/src/Middleware/Dispatcher.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Middleware/Dispatcher.php')
-rw-r--r--src/Middleware/Dispatcher.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Middleware/Dispatcher.php b/src/Middleware/Dispatcher.php
index 774040fb..f2a5b5d5 100644
--- a/src/Middleware/Dispatcher.php
+++ b/src/Middleware/Dispatcher.php
@@ -12,7 +12,7 @@ use Psr\Http\Server\RequestHandlerInterface;
class Dispatcher implements MiddlewareInterface, RequestHandlerInterface
{
- /** @var MiddlewareInterface[] */
+ /** @var MiddlewareInterface[]|string[] */
protected $stack;
/** @var Application */
@@ -22,8 +22,8 @@ class Dispatcher implements MiddlewareInterface, RequestHandlerInterface
protected $next;
/**
- * @param MiddlewareInterface[] $stack
- * @param Application|null $container
+ * @param MiddlewareInterface[]|string[] $stack
+ * @param Application|null $container
*/
public function __construct($stack = [], Application $container = null)
{