From 83b0683ec9ea7a51aaeb0f688b1bba31280c1d52 Mon Sep 17 00:00:00 2001 From: Tim MacDonald Date: Wed, 18 Dec 2024 09:21:27 +1100 Subject: [PATCH] linting --- src/Support/RedisAdapter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Support/RedisAdapter.php b/src/Support/RedisAdapter.php index 0ea1cd08..bc945b64 100644 --- a/src/Support/RedisAdapter.php +++ b/src/Support/RedisAdapter.php @@ -50,7 +50,7 @@ public function xadd(string $key, array $dictionary): string|Pipeline|PhpRedis|R */ public function xrange(string $key, string $start, string $end, ?int $count = null): array { - return collect($this->handle([ // @phpstan-ignore return.type, argument.templateType, argument.templateType + return collect($this->handle([ // @phpstan-ignore argument.templateType, argument.templateType 'XRANGE', $this->config->get('database.redis.options.prefix').$key, $start,