From 98254cf3db95480dfc5bd74dc70c5f023c358813 Mon Sep 17 00:00:00 2001 From: PHP CS Fixer Date: Sat, 24 Sep 2022 18:16:51 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/Repository/IlluminateTenantRepository.php | 2 ++ src/Repository/TenantRepository.php | 2 ++ src/Resolvers/CachedTenantResolver.php | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Repository/IlluminateTenantRepository.php b/src/Repository/IlluminateTenantRepository.php index b58ce8ad..c73d50b3 100644 --- a/src/Repository/IlluminateTenantRepository.php +++ b/src/Repository/IlluminateTenantRepository.php @@ -1,5 +1,7 @@ cache->remember( key: $this->getCacheKey(...$args), ttl: $this->ttl, - callback: fn() => $this->tenantResolver->resolve(...$args) + callback: fn () => $this->tenantResolver->resolve(...$args) ); }