Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix couple of references to the wrong arginfo #10

Merged
merged 1 commit into from
Dec 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions timecop_php7.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ const zend_function_entry timecop_functions[] = {
PHP_FE(timecop_date_create, arginfo_timecop_date_create)
PHP_FE(timecop_date_create_from_format, arginfo_timecop_date_create_from_format)
PHP_FE(timecop_date_create_immutable, arginfo_timecop_date_create)
PHP_FE(timecop_date_create_immutable_from_format, arginfo_timecop_date_create_from_format)
PHP_FE(timecop_date_create_immutable_from_format, arginfo_timecop_date_create_immutable_from_format)
{NULL, NULL, NULL}
};
/* }}} */
Expand Down Expand Up @@ -151,7 +151,7 @@ static zend_function_entry timecop_funcs_orig_date[] = {
static zend_function_entry timecop_funcs_immutable[] = {
PHP_ME(TimecopDateTimeImmutable, __construct, arginfo_class_TimecopDateTimeImmutable___construct,
ZEND_ACC_CTOR | ZEND_ACC_PUBLIC)
PHP_ME_MAPPING(createFromFormat, timecop_date_create_immutable_from_format, arginfo_timecop_date_create_from_format,
PHP_ME_MAPPING(createFromFormat, timecop_date_create_immutable_from_format, arginfo_timecop_date_create_immutable_from_format,
ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
{NULL, NULL, NULL}
};
Expand Down