From 1f3e326bd3d92c1144a7e3cf1d4dac79ffff9d06 Mon Sep 17 00:00:00 2001 From: Matthew Baggett Date: Sun, 14 Apr 2024 17:34:07 +0200 Subject: [PATCH] Add getContainer func --- src/App.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/App.php b/src/App.php index 6951f29..df379d3 100644 --- a/src/App.php +++ b/src/App.php @@ -605,4 +605,9 @@ class App // $this->logger->info('ROUTE_CACHE miss.'); } + + public function getContainer(): ContainerInterface + { + return $this->app->getContainer(); + } }