Skip to content

Commit

Permalink
Restore original class initialisation order
Browse files Browse the repository at this point in the history
  • Loading branch information
alcaeus committed Sep 5, 2024
1 parent a3cbc53 commit 62a3392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php_phongo.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,8 +253,8 @@ PHP_MINIT_FUNCTION(mongodb) /* {{{ */
php_phongo_bulkwrite_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_clientencryption_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_command_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_cursorid_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_cursor_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_cursorid_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_manager_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_query_init_ce(INIT_FUNC_ARGS_PASSTHRU);
php_phongo_readconcern_init_ce(INIT_FUNC_ARGS_PASSTHRU);
Expand Down

0 comments on commit 62a3392

Please sign in to comment.