diff --git a/flight/core/Dispatcher.php b/flight/core/Dispatcher.php index dde5ae8..12cf8ac 100644 --- a/flight/core/Dispatcher.php +++ b/flight/core/Dispatcher.php @@ -442,7 +442,7 @@ class Dispatcher if (is_a($this->containerHandler, '\Psr\Container\ContainerInterface')) { try { return $this->containerHandler->get($class); - } catch (Throwable) { + } catch (Throwable $exception) { return null; } }