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; });