diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-11-15 12:50:44 +0100 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-11-15 17:19:26 +0100 |
commit | 0cec268d15e5aded8692ee8076e93d2839725918 (patch) | |
tree | f291b6a10fea7b3204f373451464182fd1860a73 /ext/date/php_date.c | |
parent | 468ecf295d3e15a2b8d0aa3ca6b39bbb29dbffd6 (diff) | |
download | php-git-0cec268d15e5aded8692ee8076e93d2839725918.tar.gz |
Support single class unions in gen stubs
Diffstat (limited to 'ext/date/php_date.c')
-rw-r--r-- | ext/date/php_date.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 59f5a5077f..7dcc212e21 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -93,9 +93,9 @@ static const zend_function_entry date_functions[] = { /* Advanced Interface */ PHP_FE(date_create, arginfo_date_create) - PHP_FE(date_create_immutable, arginfo_date_create) + PHP_FE(date_create_immutable, arginfo_date_create_immutable) PHP_FE(date_create_from_format, arginfo_date_create_from_format) - PHP_FE(date_create_immutable_from_format, arginfo_date_create_from_format) + PHP_FE(date_create_immutable_from_format, arginfo_date_create_immutable_from_format) PHP_FE(date_parse, arginfo_date_parse) PHP_FE(date_parse_from_format, arginfo_date_parse_from_format) PHP_FE(date_get_last_errors, arginfo_date_get_last_errors) |