We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
ARG_INFO
Current code:
protected transaction = null { get };
will generate incorrect ARG_INFO which will cause seg fault:
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX(arginfo_phalcon_mvc_model_gettransaction, 0, 0, IS_NULL, 1) ZEND_END_ARG_INFO()
It is impossible to have IS_NULL inside 4th argument of ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX it always must contain valid namespace class.
IS_NULL
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX
The text was updated successfully, but these errors were encountered:
Fixed in #2387
Sorry, something went wrong.
Jeckerson
No branches or pull requests
Current code:
will generate incorrect ARG_INFO which will cause seg fault:
It is impossible to have
IS_NULL
inside 4th argument ofZEND_BEGIN_ARG_WITH_RETURN_TYPE_INFO_EX
it always must contain valid namespace class.The text was updated successfully, but these errors were encountered: