From e5851120f7fd31be624698075e7c1b25a237a408 Mon Sep 17 00:00:00 2001 From: Alexander Pankratov Date: Wed, 17 May 2023 10:58:09 +0200 Subject: [PATCH] Fix --- src/RedisAdapter.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/RedisAdapter.php b/src/RedisAdapter.php index 35e0a13..38038a9 100644 --- a/src/RedisAdapter.php +++ b/src/RedisAdapter.php @@ -13,7 +13,6 @@ public function __construct(private readonly Redis $redis) { public function __call(string $name, array $arguments) { - $this->validateAtomicRedisMode(); return $this->redis->$name(...$arguments); }