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:
authorNicolas Favre-Felix <n.favrefelix@gmail.com>2011-01-20 16:40:21 +0300
committerNicolas Favre-Felix <n.favrefelix@gmail.com>2011-01-20 16:40:21 +0300
commit8c832755151a01c6cc255ac70a4ba7b9a2097ded (patch)
tree20a0b507aa166fbdf607ff9decb8de71b3ba32f2
parenta15d84cb76c94e2ffa87aad3fbb71f2972344398 (diff)
removed dead code.2.1.0
-rwxr-xr-xphp_redis.h1
-rwxr-xr-xredis.c8
2 files changed, 0 insertions, 9 deletions
diff --git a/php_redis.h b/php_redis.h
index 410afb5f..d9d1f7ae 100755
--- a/php_redis.h
+++ b/php_redis.h
@@ -147,7 +147,6 @@ PHP_METHOD(Redis, unsubscribe);
PHP_METHOD(Redis, getOption);
PHP_METHOD(Redis, setOption);
-PHP_METHOD(Redis, setOptions);
#ifdef PHP_WIN32
#define PHP_REDIS_API __declspec(dllexport)
diff --git a/redis.c b/redis.c
index 54b2cdd2..8999d626 100755
--- a/redis.c
+++ b/redis.c
@@ -173,7 +173,6 @@ static zend_function_entry redis_functions[] = {
/* options */
PHP_ME(Redis, getOption, NULL, ZEND_ACC_PUBLIC)
PHP_ME(Redis, setOption, NULL, ZEND_ACC_PUBLIC)
- PHP_ME(Redis, setOptions, NULL, ZEND_ACC_PUBLIC)
/* aliases */
PHP_MALIAS(Redis, open, connect, NULL, ZEND_ACC_PUBLIC)
@@ -4964,12 +4963,5 @@ PHP_METHOD(Redis, setOption) {
}
/* }}} */
-/* {{{ proto string Redis::setOptions(array $options)
- */
-PHP_METHOD(Redis, setOptions) {
-
-}
-/* }}} */
-
/* vim: set tabstop=4 softtabstop=4 noexpandtab shiftwidth=4: */