From 97cf8dd5a8d7054c1d5747fbb56614d8dcba02df Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 7 Mar 2019 19:00:15 +0100 Subject: [PATCH] Make app optional --- Dispatcher/Dispatcher.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dispatcher/Dispatcher.php b/Dispatcher/Dispatcher.php index a38f5f81c..7866565fa 100644 --- a/Dispatcher/Dispatcher.php +++ b/Dispatcher/Dispatcher.php @@ -55,7 +55,7 @@ final class Dispatcher * * @since 1.0.0 */ - public function __construct(ApplicationAbstract $app) + public function __construct(ApplicationAbstract $app = null) { $this->app = $app; }