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

Fix code style (php-cs-fixer)

This commit is contained in:
PHP CS Fixer 2023-02-01 10:33:33 +00:00
parent 95170312ea
commit 9ed7308754

View file

@ -4,12 +4,12 @@ declare(strict_types=1);
namespace Stancl\Tenancy\Bootstrappers;
use Illuminate\Cache\Repository;
use Illuminate\Cache\CacheManager;
use Stancl\Tenancy\Contracts\Tenant;
use Illuminate\Cache\Repository;
use Illuminate\Contracts\Config\Repository as ConfigRepository;
use Illuminate\Support\Facades\Cache;
use Stancl\Tenancy\Contracts\TenancyBootstrapper;
use Illuminate\Contracts\Config\Repository as ConfigRepository;
use Stancl\Tenancy\Contracts\Tenant;
class PrefixCacheTenancyBootstrapper implements TenancyBootstrapper
{