Skip to content

Commit

Permalink
manually adjust order of loaded classes from Swoole Library
Browse files Browse the repository at this point in the history
  • Loading branch information
deminy committed Dec 26, 2023
1 parent 9b44b8f commit 7b8e35f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext-src/php_swoole_library.h
Original file line number Diff line number Diff line change
Expand Up @@ -9752,13 +9752,13 @@ void php_swoole_load_library()
_eval(swoole_library_source_core_coroutine_http_client_proxy, "@swoole/library/core/Coroutine/Http/ClientProxy.php");
_eval(swoole_library_source_core_coroutine_http_functions, "@swoole/library/core/Coroutine/Http/functions.php");
_eval(swoole_library_source_core_connection_pool, "@swoole/library/core/ConnectionPool.php");
_eval(swoole_library_source_core_database_detects_lost_connections, "@swoole/library/core/Database/DetectsLostConnections.php");
_eval(swoole_library_source_core_database_object_proxy, "@swoole/library/core/Database/ObjectProxy.php");
_eval(swoole_library_source_core_database_mysqli_config, "@swoole/library/core/Database/MysqliConfig.php");
_eval(swoole_library_source_core_database_mysqli_exception, "@swoole/library/core/Database/MysqliException.php");
_eval(swoole_library_source_core_database_mysqli_pool, "@swoole/library/core/Database/MysqliPool.php");
_eval(swoole_library_source_core_database_mysqli_proxy, "@swoole/library/core/Database/MysqliProxy.php");
_eval(swoole_library_source_core_database_mysqli_statement_proxy, "@swoole/library/core/Database/MysqliStatementProxy.php");
_eval(swoole_library_source_core_database_object_proxy, "@swoole/library/core/Database/ObjectProxy.php");
_eval(swoole_library_source_core_database_detects_lost_connections, "@swoole/library/core/Database/DetectsLostConnections.php");
_eval(swoole_library_source_core_database_pdo_config, "@swoole/library/core/Database/PDOConfig.php");
_eval(swoole_library_source_core_database_pdo_pool, "@swoole/library/core/Database/PDOPool.php");
_eval(swoole_library_source_core_database_pdo_proxy, "@swoole/library/core/Database/PDOProxy.php");
Expand Down

0 comments on commit 7b8e35f

Please sign in to comment.