Skip to content

Commit

Permalink
Merge pull request #2 from aliozkan/master
Browse files Browse the repository at this point in the history
RedisCluster support
  • Loading branch information
fustundag authored Sep 2, 2020
2 parents ad2af98 + fa2ac2a commit 14c67c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Teknasyon/HuaweiMobileService/HuaweiClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class HuaweiClient
private $config;

/**
* @var \Redis
* @var \Redis | \RedisCluster
*/
private $redis;

Expand Down Expand Up @@ -307,9 +307,9 @@ public function setLogger(LoggerInterface $logger)
/**
* Set the Redis object
*
* @param \Redis $redis
* @param \Redis | \RedisCluster $redis
*/
public function setRedis(\Redis $redis)
public function setRedis($redis)
{
$this->redis = $redis;
}
Expand Down

0 comments on commit 14c67c8

Please sign in to comment.