1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-12 22:14: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);
}
public function refreshStore(string|null $repository = null): void
{
$newStore = $this->resolve($repository ?? $this->getDefaultDriver())->getStore();

View file

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