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:
authortwosee <twose@qq.com>2018-10-13 05:37:59 +0300
committertwosee <twose@qq.com>2018-10-13 05:37:59 +0300
commitbc9b55975abb459ae41a626f11c985ef840fa4a3 (patch)
tree5f29cdfb6eef49f759b101c8043fda262fa76067 /redis_cluster.c
parent2e412373c47a574a1215756e79e6512a46e30cdc (diff)
Remove useless ZEND_ACC_[C|D]TOR.
#ref: https://github.com/php/php-src/commit/8939c4d96b8382abe84f35e69f4f6ebd6f0f749d#r30609734
Diffstat (limited to 'redis_cluster.c')
-rw-r--r--redis_cluster.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/redis_cluster.c b/redis_cluster.c
index 130b961a..38ee47e4 100644
--- a/redis_cluster.c
+++ b/redis_cluster.c
@@ -107,7 +107,7 @@ ZEND_END_ARG_INFO()
/* Function table */
zend_function_entry redis_cluster_functions[] = {
- PHP_ME(RedisCluster, __construct, arginfo_ctor, ZEND_ACC_CTOR | ZEND_ACC_PUBLIC)
+ PHP_ME(RedisCluster, __construct, arginfo_ctor, ZEND_ACC_PUBLIC)
PHP_ME(RedisCluster, _masters, arginfo_void, ZEND_ACC_PUBLIC)
PHP_ME(RedisCluster, _prefix, arginfo_key, ZEND_ACC_PUBLIC)
PHP_ME(RedisCluster, _redir, arginfo_void, ZEND_ACC_PUBLIC)