summaryrefslogtreecommitdiff
path: root/php/src/php7/Connection.h
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2020-12-03 12:20:37 -0500
committerGitHub <noreply@github.com>2020-12-03 12:20:37 -0500
commit606e7d6db1b07988ca149741e5b4c41779c12b65 (patch)
treed164a4f838f8183333b0e6e3090451d7b94ee15c /php/src/php7/Connection.h
parentWorkaround JS frameworks that don't support Symbol.species with Promise types... (diff)
downloadice-606e7d6db1b07988ca149741e5b4c41779c12b65.tar.bz2
ice-606e7d6db1b07988ca149741e5b4c41779c12b65.tar.xz
ice-606e7d6db1b07988ca149741e5b4c41779c12b65.zip
Add support for PHP 8 (Fixes #1172) (#1177)
Diffstat (limited to 'php/src/php7/Connection.h')
-rw-r--r--php/src/php7/Connection.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/php/src/php7/Connection.h b/php/src/php7/Connection.h
deleted file mode 100644
index 23dbe6a79fe..00000000000
--- a/php/src/php7/Connection.h
+++ /dev/null
@@ -1,27 +0,0 @@
-//
-// Copyright (c) ZeroC, Inc. All rights reserved.
-//
-
-#ifndef ICEPHP_CONNECTION_H
-#define ICEPHP_CONNECTION_H
-
-#include <Config.h>
-
-namespace IcePHP
-{
-
-//
-// Class entry.
-//
-extern zend_class_entry* connectionClassEntry;
-
-bool connectionInit(void);
-
-bool createConnection(zval*, const Ice::ConnectionPtr&);
-bool fetchConnection(zval*, Ice::ConnectionPtr&);
-
-bool createConnectionInfo(zval*, const Ice::ConnectionInfoPtr&);
-
-} // End of namespace IcePHP
-
-#endif