diff options
author | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-17 13:42:42 +0100 |
---|---|---|
committer | Máté Kocsis <kocsismate@woohoolabs.com> | 2021-02-22 15:24:03 +0100 |
commit | 4c6533c257cfabd5dd78988bb277f410b2778140 (patch) | |
tree | 81f77c32eb3daf8012427417801b9a66afce8f41 /ext/standard/basic_functions.c | |
parent | d03be8bf8613571965ec5c033f6dcd607346352a (diff) | |
download | php-git-4c6533c257cfabd5dd78988bb277f410b2778140.tar.gz |
Generate class entries from stubs for com, standard, xmlreader, xmlwriter, xsl, zip, Zend
Closes GH-6706
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); |