diff options
author | Joe George <joe@zeroc.com> | 2020-12-03 12:20:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-03 12:20:37 -0500 |
commit | 606e7d6db1b07988ca149741e5b4c41779c12b65 (patch) | |
tree | d164a4f838f8183333b0e6e3090451d7b94ee15c /php/src/php7/Connection.h | |
parent | Workaround JS frameworks that don't support Symbol.species with Promise types... (diff) | |
download | ice-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.h | 27 |
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 |