diff options
Diffstat (limited to 'ext/standard/basic_functions.c')
-rwxr-xr-x | ext/standard/basic_functions.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 4084f5d853..1a6326624b 100755 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -283,7 +283,10 @@ PHP_MINIT_FUNCTION(basic) /* {{{ */ #endif #endif - php_register_incomplete_class(); + php_ce_incomplete_class = register_class___PHP_Incomplete_Class(); + php_register_incomplete_class_handlers(); + + assertion_error_ce = register_class_AssertionError(zend_ce_error); REGISTER_LONG_CONSTANT("CONNECTION_ABORTED", PHP_CONNECTION_ABORTED, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("CONNECTION_NORMAL", PHP_CONNECTION_NORMAL, CONST_CS | CONST_PERSISTENT); |