From 1c21c66913ce1b29353f63bc6e24417abf8b74cb Mon Sep 17 00:00:00 2001 From: lukinovec Date: Thu, 5 Jan 2023 11:42:12 +0100 Subject: [PATCH] Make `$cache` non-nullable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Samuel Ć tancl --- tests/Etc/CacheManagerService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Etc/CacheManagerService.php b/tests/Etc/CacheManagerService.php index c41e3560..101b2198 100644 --- a/tests/Etc/CacheManagerService.php +++ b/tests/Etc/CacheManagerService.php @@ -9,7 +9,7 @@ use Illuminate\Cache\Repository; class CacheManagerService { - public Repository|null $cache = null; + public Repository $cache; public function __construct(CacheManager $cacheManager) {