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:
authorTyson Andre <tysonandre775@hotmail.com>2020-01-08 05:05:50 +0300
committerTyson Andre <tysonandre775@hotmail.com>2020-01-14 02:41:03 +0300
commit0ef488fca7858fc99c0d0cbe70e85281fe33c61f (patch)
tree1e88b918c851eaeb43200d0b859292738df9241c /php_redis.h
parent7a79ad9c27b1152a199fa411870767625bbf53a5 (diff)
Remove "PHP Version 5" section
package.xml has a minimum version of 7.0 PHP 8.0 will probably be out in around a year.
Diffstat (limited to 'php_redis.h')
-rw-r--r--php_redis.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/php_redis.h b/php_redis.h
index 977c5378..c86ac2b4 100644
--- a/php_redis.h
+++ b/php_redis.h
@@ -1,7 +1,5 @@
/*
+----------------------------------------------------------------------+
- | PHP Version 5 |
- +----------------------------------------------------------------------+
| Copyright (c) 1997-2009 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
@@ -263,7 +261,7 @@ PHP_MSHUTDOWN_FUNCTION(redis);
PHP_MINFO_FUNCTION(redis);
/* Redis response handler function callback prototype */
-typedef void (*ResultCallback)(INTERNAL_FUNCTION_PARAMETERS,
+typedef void (*ResultCallback)(INTERNAL_FUNCTION_PARAMETERS,
RedisSock *redis_sock, zval *z_tab, void *ctx);
PHP_REDIS_API int redis_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent);
@@ -271,7 +269,7 @@ PHP_REDIS_API int redis_connect(INTERNAL_FUNCTION_PARAMETERS, int persistent);
PHP_REDIS_API int redis_response_enqueued(RedisSock *redis_sock);
PHP_REDIS_API int redis_sock_read_multibulk_multi_reply_loop(
- INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab,
+ INTERNAL_FUNCTION_PARAMETERS, RedisSock *redis_sock, zval *z_tab,
int numElems);
extern zend_module_entry redis_module_entry;