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

Apply fixes from StyleCI (#126)

This commit is contained in:
Samuel Štancl 2019-09-11 17:37:02 +02:00 committed by GitHub
parent e43bd21442
commit 1bfe4a7ea5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
30 changed files with 59 additions and 59 deletions

View file

@ -4,9 +4,9 @@ declare(strict_types=1);
namespace Stancl\Tenancy\StorageDrivers;
use Stancl\Tenancy\TenantModel as Tenant;
use Stancl\Tenancy\Interfaces\StorageDriver;
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
use Stancl\Tenancy\Interfaces\StorageDriver;
use Stancl\Tenancy\TenantModel as Tenant;
class DatabaseStorageDriver implements StorageDriver
{

View file

@ -4,11 +4,11 @@ declare(strict_types=1);
namespace Stancl\Tenancy\StorageDrivers;
use Stancl\Tenancy\Tenant;
use Illuminate\Foundation\Application;
use Stancl\Tenancy\Interfaces\StorageDriver;
use Illuminate\Contracts\Redis\Factory as Redis;
use Illuminate\Foundation\Application;
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
use Stancl\Tenancy\Interfaces\StorageDriver;
use Stancl\Tenancy\Tenant;
class RedisStorageDriver implements StorageDriver
{