From 0b3f38d4f3cfd9d5c576d89d2002f82235c426a8 Mon Sep 17 00:00:00 2001 From: Niklas Keller Date: Sun, 19 Nov 2023 19:31:40 +0100 Subject: [PATCH] Fix code style --- src/Command/RedisSet.php | 2 -- src/RedisClient.php | 4 ---- 2 files changed, 6 deletions(-) diff --git a/src/Command/RedisSet.php b/src/Command/RedisSet.php index 29e9a76..4ea0d42 100644 --- a/src/Command/RedisSet.php +++ b/src/Command/RedisSet.php @@ -127,8 +127,6 @@ public function scan(?string $pattern = null, ?int $count = null): \Traversable } /** - * @param SortOptions $options - * * @link https://redis.io/commands/sort */ public function sort(?SortOptions $options = null): array diff --git a/src/RedisClient.php b/src/RedisClient.php index cd08d8c..54a686d 100644 --- a/src/RedisClient.php +++ b/src/RedisClient.php @@ -490,8 +490,6 @@ public function publish(string $channel, string $message): int } /** - * @param string $pattern - * * @link https://redis.io/commands/pubsub */ public function getActiveChannels(?string $pattern = null): array @@ -700,8 +698,6 @@ public function disableReplication(): void } /** - * @param int $count - * * @link https://redis.io/commands/slowlog */ public function getSlowlog(?int $count = null): array