Skip to content

Commit d7b8cf5

Browse files
committed
fix: tests
1 parent b63b782 commit d7b8cf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Abuse/Adapters/TimeLimit/RedisCluster.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ protected function hit(string $key, int $timestamp): void
7171

7272
$key = self::NAMESPACE . '__'. $key .'__'. $timestamp;
7373

74-
$this->redis->multi(\RedisCluster::MULTI);
74+
$this->redis->multi();
7575
$this->redis->incr($key);
7676
$this->redis->expire($key, $this->ttl);
7777
$this->redis->exec();

0 commit comments

Comments
 (0)