Skip to content

Commit

Permalink
Use Hyperf/Context/Context instead of Hyperf/Utils/Context. (#4565)
Browse files Browse the repository at this point in the history
  • Loading branch information
limingxinleo authored Mar 1, 2022
1 parent 7175e9e commit 7895941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Redis.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
*/
namespace Hyperf\Redis;

use Hyperf\Context\Context;
use Hyperf\Redis\Exception\InvalidRedisConnectionException;
use Hyperf\Redis\Pool\PoolFactory;
use Hyperf\Utils\Context;

/**
* @mixin \Redis
Expand Down
2 changes: 1 addition & 1 deletion tests/RedisTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
namespace HyperfTest\Redis;

use Hyperf\Config\Config;
use Hyperf\Context\Context;
use Hyperf\Contract\ConfigInterface;
use Hyperf\Di\Container;
use Hyperf\Pool\Channel;
Expand All @@ -23,7 +24,6 @@
use Hyperf\Redis\Redis;
use Hyperf\Redis\RedisProxy;
use Hyperf\Utils\ApplicationContext;
use Hyperf\Utils\Context;
use Hyperf\Utils\Coroutine;
use HyperfTest\Redis\Stub\RedisPoolFailedStub;
use HyperfTest\Redis\Stub\RedisPoolStub;
Expand Down

0 comments on commit 7895941

Please sign in to comment.