aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/ext/grpc/call_credentials.c
diff options
context:
space:
mode:
authorGravatar thinkerou <thinkerou@gmail.com>2018-05-15 10:37:43 +0800
committerGravatar thinkerou <thinkerou@gmail.com>2018-05-15 10:37:43 +0800
commit771c20575e4db1d1855670305dd3bfeb1698fa49 (patch)
tree20bc29c39e838a223944f0c8ad7c89c485ee1ac7 /src/php/ext/grpc/call_credentials.c
parent59a4baa6f82db696bf3e2c0d5d54d90f95bdcbde (diff)
remove invalid include-file and adjust include-file sort
Diffstat (limited to 'src/php/ext/grpc/call_credentials.c')
-rw-r--r--src/php/ext/grpc/call_credentials.c16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/php/ext/grpc/call_credentials.c b/src/php/ext/grpc/call_credentials.c
index d96dc7f3b7..12dcd46b21 100644
--- a/src/php/ext/grpc/call_credentials.c
+++ b/src/php/ext/grpc/call_credentials.c
@@ -16,28 +16,16 @@
*
*/
-#include "channel_credentials.h"
#include "call_credentials.h"
-#ifdef HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <php.h>
-#include <php_ini.h>
-#include <ext/standard/info.h>
#include <ext/spl/spl_exceptions.h>
-#include "php_grpc.h"
-#include "call.h"
-
#include <zend_exceptions.h>
-#include <zend_hash.h>
-#include <grpc/grpc.h>
-#include <grpc/grpc_security.h>
#include <grpc/support/log.h>
#include <grpc/support/string_util.h>
+#include "call.h"
+
zend_class_entry *grpc_ce_call_credentials;
#if PHP_MAJOR_VERSION >= 7
static zend_object_handlers call_credentials_ce_handlers;