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
Assertion::integerish([]) fails due to Array to String conversion and therefore does not throw the expected exception.
Assertion::integerish([])
The change from \strval(\intval($value)) != \strval($value) to \strval(\intval($value)) !== \strval($value) in 2.7.7 seems to be causing this issue.
\strval(\intval($value)) != \strval($value)
\strval(\intval($value)) !== \strval($value)
The text was updated successfully, but these errors were encountered:
Thank you for reporting this.
A fix is in the works and should be released shortly.
Sorry, something went wrong.
12c68c4
No branches or pull requests
Assertion::integerish([])
fails due to Array to String conversion and therefore does not throw the expected exception.The change from
\strval(\intval($value)) != \strval($value)
to\strval(\intval($value)) !== \strval($value)
in 2.7.7 seems to be causing this issue.The text was updated successfully, but these errors were encountered: