#113071 Замена predis для работы с sentinel

This commit is contained in:
Александр Рыбкин 2025-07-30 16:14:01 +03:00
parent 4315f07649
commit c03964c1a9
4 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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.

View File

@ -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.