diff options
Diffstat (limited to 'ext/standard/basic_functions_arginfo.h')
-rw-r--r-- | ext/standard/basic_functions_arginfo.h | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/ext/standard/basic_functions_arginfo.h b/ext/standard/basic_functions_arginfo.h index 1c7f6b00ec..f44a322267 100644 --- a/ext/standard/basic_functions_arginfo.h +++ b/ext/standard/basic_functions_arginfo.h @@ -1,5 +1,5 @@ /* This is a generated file, edit the .stub.php file instead. - * Stub hash: e9f39cbc595f0f2cdd84e58d4857f9fdb03ff7b7 */ + * Stub hash: 97edf8c87780c892984099e52ad1c6c745b919f8 */ ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_set_time_limit, 0, 1, _IS_BOOL, 0) ZEND_ARG_TYPE_INFO(0, seconds, IS_LONG, 0) @@ -3491,3 +3491,34 @@ static const zend_function_entry ext_functions[] = { #endif ZEND_FE_END }; + + +static const zend_function_entry class___PHP_Incomplete_Class_methods[] = { + ZEND_FE_END +}; + + +static const zend_function_entry class_AssertionError_methods[] = { + ZEND_FE_END +}; + +static zend_class_entry *register_class___PHP_Incomplete_Class(void) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "__PHP_Incomplete_Class", class___PHP_Incomplete_Class_methods); + class_entry = zend_register_internal_class_ex(&ce, NULL); + class_entry->ce_flags |= ZEND_ACC_FINAL; + + return class_entry; +} + +static zend_class_entry *register_class_AssertionError(zend_class_entry *class_entry_Error) +{ + zend_class_entry ce, *class_entry; + + INIT_CLASS_ENTRY(ce, "AssertionError", class_AssertionError_methods); + class_entry = zend_register_internal_class_ex(&ce, class_entry_Error); + + return class_entry; +} |