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

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2022-12-12 16:07:21 +00:00
parent d364568e53
commit 3cadefd41c
2 changed files with 6 additions and 7 deletions

View file

@ -41,7 +41,6 @@ class CacheManager extends BaseCacheManager
return parent::__call($method, $parameters); return parent::__call($method, $parameters);
} }
public function refreshStore(string|null $repository = null): void public function refreshStore(string|null $repository = null): void
{ {
$newStore = $this->resolve($repository ?? $this->getDefaultDriver())->getStore(); $newStore = $this->resolve($repository ?? $this->getDefaultDriver())->getStore();

View file

@ -4,17 +4,17 @@ declare(strict_types=1);
namespace Stancl\Tenancy; namespace Stancl\Tenancy;
use Stancl\Tenancy\Enums\LogMode;
use Illuminate\Cache\CacheManager; use Illuminate\Cache\CacheManager;
use Stancl\Tenancy\Contracts\Domain; use Illuminate\Database\Console\Migrations\FreshCommand;
use Stancl\Tenancy\Contracts\Tenant;
use Illuminate\Support\Facades\Event; use Illuminate\Support\Facades\Event;
use Illuminate\Support\ServiceProvider; use Illuminate\Support\ServiceProvider;
use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper;
use Stancl\Tenancy\CacheManager as TenantCacheManager;
use Stancl\Tenancy\Contracts\Domain;
use Stancl\Tenancy\Contracts\Tenant;
use Stancl\Tenancy\Enums\LogMode;
use Stancl\Tenancy\Events\Contracts\TenancyEvent; use Stancl\Tenancy\Events\Contracts\TenancyEvent;
use Stancl\Tenancy\Resolvers\DomainTenantResolver; use Stancl\Tenancy\Resolvers\DomainTenantResolver;
use Stancl\Tenancy\CacheManager as TenantCacheManager;
use Illuminate\Database\Console\Migrations\FreshCommand;
use Stancl\Tenancy\Bootstrappers\FilesystemTenancyBootstrapper;
class TenancyServiceProvider extends ServiceProvider class TenancyServiceProvider extends ServiceProvider
{ {