summaryrefslogtreecommitdiff
path: root/src/Middleware/Dispatcher.php
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-08-11 23:46:28 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-19 13:59:39 +0200
commitf3b3b6683ca90b70ec4d4daae002dc0caac9ebdd (patch)
treec550252995a46763d8c540c9bd7f41e4b1c4f246 /src/Middleware/Dispatcher.php
parentf3f05f6cc4bef3338dbfb6eb340da4fb1c5ba1e1 (diff)
Added middleware tests
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)
{