From 0b332ceac24ee93e82e25ee95841ae6fae3b889b Mon Sep 17 00:00:00 2001 From: Côme Chilliet Date: Thu, 28 Mar 2024 16:13:19 +0100 Subject: fix: Apply new coding standard to all files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- lib/autoloader.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/autoloader.php') diff --git a/lib/autoloader.php b/lib/autoloader.php index 26540b754a5..0f8a2ad9687 100644 --- a/lib/autoloader.php +++ b/lib/autoloader.php @@ -36,7 +36,7 @@ declare(strict_types=1); */ namespace OC; -use \OCP\AutoloadNotAllowedException; +use OCP\AutoloadNotAllowedException; use OCP\ICache; use Psr\Log\LoggerInterface; @@ -185,7 +185,7 @@ class Autoloader { * * @param ICache $memoryCache Instance of memory cache. */ - public function setMemoryCache(ICache $memoryCache = null): void { + public function setMemoryCache(?ICache $memoryCache = null): void { $this->memoryCache = $memoryCache; } } -- cgit v1.2.3