1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 18:04:03 +00:00

Make $cache non-nullable

Co-authored-by: Samuel Štancl <samuel@archte.ch>
This commit is contained in:
lukinovec 2023-01-05 11:42:12 +01:00 committed by GitHub
parent a59d5a1069
commit 1c21c66913
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@ use Illuminate\Cache\Repository;
class CacheManagerService
{
public Repository|null $cache = null;
public Repository $cache;
public function __construct(CacheManager $cacheManager)
{