From 1536b2aa820dd6fb3f4462ce7fbe391a1da7d2d0 Mon Sep 17 00:00:00 2001 From: Daniele Alessandri Date: Tue, 24 May 2016 12:26:50 +0200 Subject: [PATCH] Add missing @method tag for HSTRLEN in phpdocs. [ci skip] --- src/ClientContextInterface.php | 1 + src/ClientInterface.php | 1 + 2 files changed, 2 insertions(+) diff --git a/src/ClientContextInterface.php b/src/ClientContextInterface.php index 9c69f5cb..edc6f3b4 100644 --- a/src/ClientContextInterface.php +++ b/src/ClientContextInterface.php @@ -71,6 +71,7 @@ use Predis\Command\CommandInterface; * @method $this hset($key, $field, $value) * @method $this hsetnx($key, $field, $value) * @method $this hvals($key) + * @method $this hstrlen($key, $field) * @method $this blpop(array $keys, $timeout) * @method $this brpop(array $keys, $timeout) * @method $this brpoplpush($source, $destination, $timeout) diff --git a/src/ClientInterface.php b/src/ClientInterface.php index 8126ffec..effd7c09 100644 --- a/src/ClientInterface.php +++ b/src/ClientInterface.php @@ -79,6 +79,7 @@ use Predis\Profile\ProfileInterface; * @method int hset($key, $field, $value) * @method int hsetnx($key, $field, $value) * @method array hvals($key) + * @method int hstrlen($key, $field) * @method array blpop(array $keys, $timeout) * @method array brpop(array $keys, $timeout) * @method array brpoplpush($source, $destination, $timeout)