mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
The arg_info member of zend_function is now always a zend_arg_info*. Before, it was a zend_internal_arg_info* on internal functions, unless the ZEND_ACC_USER_ARG_INFO flag was set. Closes GH-19022
12 lines
333 B
PHP
12 lines
333 B
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
/**
|
|
* These methods will be added to a class at runtime
|
|
* @undocumentable
|
|
*/
|
|
class ZendTestTmpMethods {
|
|
public function testTmpMethodWithArgInfo(Foo|Bar|null $tmpMethodParamName = null, string $tmpMethodParamWithStringDefaultValue = "tmpMethodParamWithStringDefaultValue"): void {}
|
|
}
|