diff --git a/Client/Phpredis/Client.php b/Client/Phpredis/Client.php index 1387755e..3a1ca618 100644 --- a/Client/Phpredis/Client.php +++ b/Client/Phpredis/Client.php @@ -231,14 +231,6 @@ public function del($key, ...$other_keys) return $this->call('del', array_merge([$key], $other_keys)); } - /** - * {@inheritdoc} - */ - public function delete($key, ...$other_keys) - { - return $this->call('delete', array_merge([$key], $other_keys)); - } - /** * {@inheritdoc} */ diff --git a/Client/Phpredis/ClientCluster.php b/Client/Phpredis/ClientCluster.php index 56c279d3..20f40873 100644 --- a/Client/Phpredis/ClientCluster.php +++ b/Client/Phpredis/ClientCluster.php @@ -170,22 +170,6 @@ public function del($key, ...$other_keys) return $this->call('del', array_merge([$key], $other_keys)); } - /** - * {@inheritdoc} - */ - public function delete($key, ...$other_keys) - { - return $this->call('delete', array_merge([$key], $other_keys)); - } - - /** - * {@inheritdoc} - */ - public function unlink($key, ...$other_keys) - { - return $this->call('unlink', array_merge([$key], $other_keys)); - } - /** * {@inheritdoc} */ @@ -458,14 +442,6 @@ public function lTrim($key, $start, $stop) return $this->call('lTrim', func_get_args()); } - /** - * {@inheritdoc} - */ - public function listTrim($key, $start, $stop) - { - return $this->call('listTrim', func_get_args()); - } - /** * {@inheritdoc} */ @@ -474,14 +450,6 @@ public function lRem($key, $value) return $this->call('lRem', func_get_args()); } - /** - * {@inheritdoc} - */ - public function lRemove($key, $value, $count) - { - return $this->call('lRemove', func_get_args()); - } - /** * {@inheritdoc} */ @@ -506,14 +474,6 @@ public function sRem($key, $member, ...$other_members) return $this->call('sRem', array_merge([$key, $member], $other_members)); } - /** - * {@inheritdoc} - */ - public function sRemove($key, $member, ...$other_members) - { - return $this->call('sRemove', array_merge([$key, $member], $other_members)); - } - /** * {@inheritdoc} */ @@ -530,14 +490,6 @@ public function sIsMember($key, $value) return $this->call('sIsMember', func_get_args()); } - /** - * {@inheritdoc} - */ - public function sContains($key, $value) - { - return $this->call('sContains', func_get_args()); - } - /** * {@inheritdoc} */ @@ -618,14 +570,6 @@ public function sMembers($key) return $this->call('sMembers', func_get_args()); } - /** - * {@inheritdoc} - */ - public function sGetMembers($key) - { - return $this->call('sGetMembers', func_get_args()); - } - /** * {@inheritdoc} */ @@ -914,14 +858,6 @@ public function info($key_or_address, $option = null) return $this->call('info', func_get_args()); } - /** - * {@inheritdoc} - */ - public function resetStat() - { - return $this->call('resetStat', func_get_args()); - } - /** * {@inheritdoc} */ @@ -1426,30 +1362,6 @@ public function getMode() return $this->call('getMode', func_get_args()); } - /** - * {@inheritdoc} - */ - public function xAck($stream, $group, $arr_messages) - { - return $this->call('xAck', func_get_args()); - } - - /** - * {@inheritdoc} - */ - public function xAdd($str_key, $str_id, array $arr_fields, $i_maxlen = null, $boo_approximate = null) - { - return $this->call('xAdd', func_get_args()); - } - - /** - * {@inheritdoc} - */ - public function xClaim($str_key, $str_group, $str_consumer, $min_idle_time, $arr_ids, $arr_options = []) - { - return $this->call('xClaim', func_get_args()); - } - /** * {@inheritdoc} */