1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 15:34:04 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2020-03-13 23:17:13 +00:00 committed by StyleCI Bot
parent c52d12cb99
commit 01c9671461
2 changed files with 5 additions and 3 deletions

View file

@ -1,12 +1,13 @@
<?php <?php
declare(strict_types=1);
namespace Stancl\Tenancy\StorageDrivers\Database; namespace Stancl\Tenancy\StorageDrivers\Database;
use Closure; use Closure;
use Illuminate\Cache\CacheManager; use Illuminate\Cache\CacheManager;
use Illuminate\Config\Repository as ConfigRepository;
use Illuminate\Cache\Repository as CacheRepository; use Illuminate\Cache\Repository as CacheRepository;
use Illuminate\Contracts\Cache\Store; use Illuminate\Config\Repository as ConfigRepository;
use Stancl\Tenancy\Tenant; use Stancl\Tenancy\Tenant;
class CachedTenantResolver class CachedTenantResolver

View file

@ -1,5 +1,7 @@
<?php <?php
declare(strict_types=1);
namespace Stancl\Tenancy\Tests; namespace Stancl\Tenancy\Tests;
use Stancl\Tenancy\Tenant; use Stancl\Tenancy\Tenant;
@ -42,7 +44,6 @@ class CachedResolverTest extends TestCase
/** @test */ /** @test */
public function modifying_tenants_domains_updates_domains_in_the_cached_domain_to_id_mapping() public function modifying_tenants_domains_updates_domains_in_the_cached_domain_to_id_mapping()
{ {
} }
/** @test */ /** @test */