mirror of
https://github.com/php/php-src.git
synced 2026-04-19 14:01:01 +02:00
The hash is used to check whether the arginfo file needs to be regenerated. PHP-Parser will only be downloaded if this is actually necessary. This ensures that release artifacts will never try to regenerate stubs and thus fetch PHP-Parser, as long as you do not modify any files. Closes GH-5739.
24 lines
776 B
C
24 lines
776 B
C
/* This is a generated file, edit the .stub.php file instead.
|
|
* Stub hash: ae14c81d7c4642412440f6236b34b7c7c0143911 */
|
|
|
|
ZEND_BEGIN_ARG_INFO_EX(arginfo_class_Directory_close, 0, 0, 0)
|
|
ZEND_ARG_INFO(0, dir_handle)
|
|
ZEND_END_ARG_INFO()
|
|
|
|
#define arginfo_class_Directory_rewind arginfo_class_Directory_close
|
|
|
|
#define arginfo_class_Directory_read arginfo_class_Directory_close
|
|
|
|
|
|
ZEND_FUNCTION(closedir);
|
|
ZEND_FUNCTION(rewinddir);
|
|
ZEND_FUNCTION(readdir);
|
|
|
|
|
|
static const zend_function_entry class_Directory_methods[] = {
|
|
ZEND_ME_MAPPING(close, closedir, arginfo_class_Directory_close, ZEND_ACC_PUBLIC)
|
|
ZEND_ME_MAPPING(rewind, rewinddir, arginfo_class_Directory_rewind, ZEND_ACC_PUBLIC)
|
|
ZEND_ME_MAPPING(read, readdir, arginfo_class_Directory_read, ZEND_ACC_PUBLIC)
|
|
ZEND_FE_END
|
|
};
|