From 2f811f99de9875cd717877bc1d884d84f1c35508 Mon Sep 17 00:00:00 2001
From: Art4 <art4@wlabs.de>
Date: Sun, 12 Jan 2025 13:04:49 +0000
Subject: [PATCH] Fix PHPStan error, fix code style

---
 src/Core/Logger/LoggerManager.php | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/src/Core/Logger/LoggerManager.php b/src/Core/Logger/LoggerManager.php
index c60bce660f..697756099d 100644
--- a/src/Core/Logger/LoggerManager.php
+++ b/src/Core/Logger/LoggerManager.php
@@ -35,8 +35,6 @@ final class LoggerManager
 	/**
 	 * Workaround: $logChannel must be static
 	 * because Dice always creates a new LoggerManager object
-	 *
-	 * @var LoggerInterface|null
 	 */
 	private static string $logChannel = LogChannel::DEFAULT;
 
@@ -55,9 +53,9 @@ final class LoggerManager
 		$this->config  = $config;
 		$this->factory = $factory;
 
-		$this->debug     = (bool) $config->get('system', 'debugging') ?? false;
+		$this->debug     = (bool) $config->get('system', 'debugging')  ?? false;
 		$this->logLevel  = (string) $config->get('system', 'loglevel') ?? LogLevel::NOTICE;
-		$this->profiling = (bool) $config->get('system', 'profiling') ?? false;
+		$this->profiling = (bool) $config->get('system', 'profiling')  ?? false;
 	}
 
 	public function changeLogChannel(string $logChannel): void