mirror of
https://github.com/archtechx/tenancy.git
synced 2025-12-13 01:34:02 +00:00
Apply fixes from StyleCI
This commit is contained in:
parent
69db512d30
commit
76fae5c287
2 changed files with 2 additions and 2 deletions
|
|
@ -69,7 +69,7 @@ interface StorageDriver
|
||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
public function put(string $key, $value, Tenant $tenant = null): void;
|
public function put(string $key, $value, Tenant $tenant = null): void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Put multiple values into storage.
|
* Put multiple values into storage.
|
||||||
*
|
*
|
||||||
|
|
|
||||||
|
|
@ -4,11 +4,11 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Stancl\Tenancy\StorageDrivers;
|
namespace Stancl\Tenancy\StorageDrivers;
|
||||||
|
|
||||||
|
use Stancl\Tenancy\Tenant;
|
||||||
use Illuminate\Foundation\Application;
|
use Illuminate\Foundation\Application;
|
||||||
use Stancl\Tenancy\Interfaces\StorageDriver;
|
use Stancl\Tenancy\Interfaces\StorageDriver;
|
||||||
use Illuminate\Contracts\Redis\Factory as Redis;
|
use Illuminate\Contracts\Redis\Factory as Redis;
|
||||||
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
|
use Stancl\Tenancy\Exceptions\TenantCouldNotBeIdentifiedException;
|
||||||
use Stancl\Tenancy\Tenant;
|
|
||||||
|
|
||||||
class RedisStorageDriver implements StorageDriver
|
class RedisStorageDriver implements StorageDriver
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue