From 012a39f79d41e431546dc32b670bd33d1ffab2cb Mon Sep 17 00:00:00 2001 From: PHP CS Fixer Date: Fri, 9 Dec 2022 11:22:03 +0000 Subject: [PATCH] Fix code style (php-cs-fixer) --- src/Bootstrappers/PrefixCacheTenancyBootstrapper.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Bootstrappers/PrefixCacheTenancyBootstrapper.php b/src/Bootstrappers/PrefixCacheTenancyBootstrapper.php index f8b59946..1e502e1d 100644 --- a/src/Bootstrappers/PrefixCacheTenancyBootstrapper.php +++ b/src/Bootstrappers/PrefixCacheTenancyBootstrapper.php @@ -5,10 +5,10 @@ declare(strict_types=1); namespace Stancl\Tenancy\Bootstrappers; use Illuminate\Cache\CacheManager; -use Stancl\Tenancy\Contracts\Tenant; -use Illuminate\Support\Facades\Cache; use Illuminate\Contracts\Config\Repository; +use Illuminate\Support\Facades\Cache; use Stancl\Tenancy\Contracts\TenancyBootstrapper; +use Stancl\Tenancy\Contracts\Tenant; class PrefixCacheTenancyBootstrapper implements TenancyBootstrapper { @@ -23,7 +23,7 @@ class PrefixCacheTenancyBootstrapper implements TenancyBootstrapper public function bootstrap(Tenant $tenant): void { - Cache::macro('setStore', function($store) { + Cache::macro('setStore', function ($store) { $this->store = $store; });