We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c501638 + e74e98e commit d1eddc4Copy full SHA for d1eddc4
redis.c
@@ -72,8 +72,8 @@ PHP_INI_END()
72
ZEND_DECLARE_MODULE_GLOBALS(redis)
73
74
static zend_function_entry redis_functions[] = {
75
- PHP_ME(Redis, __construct, NULL, ZEND_ACC_PUBLIC)
76
- PHP_ME(Redis, __destruct, NULL, ZEND_ACC_PUBLIC)
+ PHP_ME(Redis, __construct, NULL, ZEND_ACC_CTOR | ZEND_ACC_PUBLIC)
+ PHP_ME(Redis, __destruct, NULL, ZEND_ACC_DTOR | ZEND_ACC_PUBLIC)
77
PHP_ME(Redis, connect, NULL, ZEND_ACC_PUBLIC)
78
PHP_ME(Redis, pconnect, NULL, ZEND_ACC_PUBLIC)
79
PHP_ME(Redis, close, NULL, ZEND_ACC_PUBLIC)
0 commit comments