#113071 Замена predis для работы с sentinel
This commit is contained in:
parent
4315f07649
commit
c03964c1a9
|
@ -4,7 +4,7 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Namoshek\Redis\Sentinel\Connections;
|
||||
namespace Dominion\Redis\Sentinel\Connections;
|
||||
|
||||
use Closure;
|
||||
use Illuminate\Redis\Connections\PhpRedisConnection;
|
||||
|
|
|
@ -2,12 +2,12 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Namoshek\Redis\Sentinel\Connectors;
|
||||
namespace Dominion\Redis\Sentinel\Connectors;
|
||||
|
||||
use Illuminate\Redis\Connectors\PhpRedisConnector;
|
||||
use Illuminate\Support\Arr;
|
||||
use Namoshek\Redis\Sentinel\Connections\PhpRedisSentinelConnection;
|
||||
use Namoshek\Redis\Sentinel\Exceptions\ConfigurationException;
|
||||
use Dominion\Redis\Sentinel\Connections\PhpRedisSentinelConnection;
|
||||
use Dominion\Redis\Sentinel\Exceptions\ConfigurationException;
|
||||
use Redis;
|
||||
use RedisException;
|
||||
use RedisSentinel;
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Namoshek\Redis\Sentinel\Exceptions;
|
||||
namespace Dominion\Redis\Sentinel\Exceptions;
|
||||
|
||||
/**
|
||||
* Exception to be used if wrong application configuration is encountered.
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Namoshek\Redis\Sentinel;
|
||||
namespace Dominion\Redis\Sentinel;
|
||||
|
||||
use Illuminate\Redis\RedisManager;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
use Namoshek\Redis\Sentinel\Connectors\PhpRedisSentinelConnector;
|
||||
use Dominion\Redis\Sentinel\Connectors\PhpRedisSentinelConnector;
|
||||
|
||||
/**
|
||||
* Registers and boots services of the Laravel Redis Sentinel package.
|
||||
|
|
Loading…
Reference in New Issue