From bba5090ec327a5aaaf7e233441e0240413c4c3fd Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 6 Feb 2021 18:22:19 +0100 Subject: [PATCH] We can't be sure of the class of the logger --- classes/Controller/BaseController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/classes/Controller/BaseController.php b/classes/Controller/BaseController.php index f773bc1..164686e 100644 --- a/classes/Controller/BaseController.php +++ b/classes/Controller/BaseController.php @@ -11,8 +11,8 @@ use Alltube\Library\Downloader; use Alltube\Library\Video; use Alltube\LocaleManager; use Aura\Session\Segment; -use Consolidation\Log\Logger; use Psr\Container\ContainerInterface; +use Psr\Log\LoggerInterface; use Slim\Http\Request; use Slim\Http\Response; use Slim\Router; @@ -72,7 +72,7 @@ abstract class BaseController protected $downloader; /** - * @var Logger + * @var LoggerInterface */ protected $logger;