From 624b2f8b317bc63dade8e9336205df01dd755383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Thu, 20 Apr 2023 00:29:22 +0200 Subject: [PATCH] use IRouteCollection in app container --- main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.php b/main.php index b8f0226..c97b24b 100644 --- a/main.php +++ b/main.php @@ -16,7 +16,7 @@ class Container { static SokoWeb\Interfaces\Database\IConnection $dbConnection; static SokoWeb\Interfaces\PersistentData\IPersistentDataManager $persistentDataManager; - static SokoWeb\Routing\RouteCollection $routeCollection; + static SokoWeb\Interfaces\Routing\IRouteCollection $routeCollection; static SokoWeb\Interfaces\Session\ISessionHandler $sessionHandler; static SokoWeb\Interfaces\Request\IRequest $request; }