Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2013-06-24 22:57:28 +0400
committermichael-grunder <michael.grunder@gmail.com>2013-06-24 22:57:28 +0400
commitde139e83def52554cb8718fe560ba515bcc565b0 (patch)
tree1f4cd8cb9a3f1df59c906b077691b395ade58c43
parent2d0f29bdaf29b071aea29b8fb9ee4158c2b69d72 (diff)
parente47e18c4b29b9887b0fe472e76ed461c9407c273 (diff)
Merge branch 'hotfix/echo_alias'echo_alias
-rw-r--r--redis.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/redis.c b/redis.c
index d85620de..6b283170 100644
--- a/redis.c
+++ b/redis.c
@@ -276,6 +276,8 @@ static zend_function_entry redis_functions[] = {
PHP_MALIAS(Redis, sismember, sContains, NULL, ZEND_ACC_PUBLIC)
PHP_MALIAS(Redis, zrevrange, zReverseRange, NULL, ZEND_ACC_PUBLIC)
+ PHP_MALIAS(Redis, sendEcho, echo, NULL, ZEND_ACC_PUBLIC)
+
PHP_MALIAS(Redis, evaluate, eval, NULL, ZEND_ACC_PUBLIC)
PHP_MALIAS(Redis, evaluateSha, evalsha, NULL, ZEND_ACC_PUBLIC)
{NULL, NULL, NULL}