diff --git a/package.xml b/package.xml
index 66bd6886bbf..f395334745c 100644
--- a/package.xml
+++ b/package.xml
@@ -10,7 +10,7 @@
grpc-packages@google.com
yes
- 2016-07-21
+ 2016-07-28
1.1.0
@@ -22,7 +22,7 @@
BSD
-- PHP7 Support #7464
+- PHP7 Support continued, reduce code duplication #7543
@@ -1118,5 +1118,20 @@ Update to wrap gRPC C Core version 0.10.0
- PHP7 Support #7464
+
+
+ 1.0.0RC3
+ 1.0.0RC3
+
+
+ stable
+ stable
+
+ 2016-07-28
+ BSD
+
+- PHP7 Support continued, reduce code duplication #7543
+
+
diff --git a/src/php/ext/grpc/call.c b/src/php/ext/grpc/call.c
index 429dbf52d0b..66ca1513ed7 100644
--- a/src/php/ext/grpc/call.c
+++ b/src/php/ext/grpc/call.c
@@ -470,7 +470,8 @@ PHP_METHOD(Call, startBatch) {
#endif
PHP_GRPC_DELREF(array);
add_property_long(recv_status, "code", status);
- php_grpc_add_property_string(recv_status, "details", status_details, true);
+ php_grpc_add_property_string(recv_status, "details", status_details,
+ true);
add_property_zval(result, "status", recv_status);
PHP_GRPC_DELREF(recv_status);
break;
diff --git a/src/php/ext/grpc/package.xml b/src/php/ext/grpc/package.xml
deleted file mode 100644
index daf2ee5a53d..00000000000
--- a/src/php/ext/grpc/package.xml
+++ /dev/null
@@ -1,156 +0,0 @@
-
-
- grpc
- pecl.php.net
- A high performance, open source, general RPC framework that puts mobile and HTTP/2 first.
- Remote Procedure Calls (RPCs) provide a useful abstraction for building distributed applications and services. The libraries in this repository provide a concrete implementation of the gRPC protocol, layered over HTTP/2. These libraries enable communication between clients and servers using any combination of the supported languages.
-
- Stanley Cheung
- stanleycheung
- grpc-packages@google.com
- yes
-
- 2016-01-13
-
-
- 0.7.0
- 0.7.0
-
-
- beta
- beta
-
- BSD
-
-- Breaking change to Credentials class (removed) #3765
-- Replaced by ChannelCredentials and CallCredentials class #3765
-- New plugin based metadata auth API #4394
-- Explicit ChannelCredentials::createInsecure() call
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 5.5.0
-
-
- 1.4.0
-
-
-
- grpc
-
-
-
-
- 0.5.0
- 0.5.0
-
-
- alpha
- alpha
-
- 2015-06-16
- BSD
-
-First alpha release
-
-
-
-
- 0.5.1
- 0.5.1
-
-
- alpha
- alpha
-
- 2015-07-09
- BSD
-
-Update to wrap gRPC C Core version 0.10.0
-
-
-
-
- 0.6.0
- 0.6.0
-
-
- beta
- beta
-
- 2015-09-24
- BSD
-
-- support per message compression disable
-- expose per-call host override option
-- expose connectivity API
-- expose channel target and call peer
-- add user-agent
-- update to wrap gRPC C core library beta version 0.11.0
-
-
-
-
- 0.6.1
- 0.6.0
-
-
- beta
- beta
-
- 2015-10-21
- BSD
-
-- fixed undefined constant fatal error when run with apache/nginx #2275
-
-
-
-
- 0.7.0
- 0.7.0
-
-
- beta
- beta
-
- 2016-01-13
- BSD
-
-- Breaking change to Credentials class (removed) #3765
-- Replaced by ChannelCredentials and CallCredentials class #3765
-- New plugin based metadata auth API #4394
-- Explicit ChannelCredentials::createInsecure() call
-
-
-
-
diff --git a/src/php/ext/grpc/php7_wrapper.h b/src/php/ext/grpc/php7_wrapper.h
index f2976c26cd9..fd8d35636f0 100644
--- a/src/php/ext/grpc/php7_wrapper.h
+++ b/src/php/ext/grpc/php7_wrapper.h
@@ -110,7 +110,8 @@
#define PHP_GRPC_HASH_FOREACH_END() }
-static inline int php_grpc_zend_hash_find(HashTable *ht, char *key, int len, void **value) {
+static inline int php_grpc_zend_hash_find(HashTable *ht, char *key, int len,
+ void **value) {
zval **data = NULL;
if (zend_hash_find(ht, key, len, (void **)&data) == SUCCESS) {
*value = *data;
diff --git a/templates/package.xml.template b/templates/package.xml.template
index 76c6fff7a7c..87b10389598 100644
--- a/templates/package.xml.template
+++ b/templates/package.xml.template
@@ -12,7 +12,7 @@
grpc-packages@google.com
yes
- 2016-07-21
+ 2016-07-28
${settings.php_version.php()}
@@ -24,7 +24,7 @@
BSD
- - PHP7 Support #7464
+ - PHP7 Support continued, reduce code duplication #7543
@@ -234,5 +234,20 @@
- PHP7 Support #7464
+
+
+ 1.0.0RC3
+ 1.0.0RC3
+
+
+ stable
+ stable
+
+ 2016-07-28
+ BSD
+
+ - PHP7 Support continued, reduce code duplication #7543
+
+