-
Notifications
You must be signed in to change notification settings - Fork 32
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
Enable PHP 7.2 build #116
Enable PHP 7.2 build #116
Conversation
The Mersenne Twister implementation seems to have a syntax problem:
Ah right:
|
Afraid this would fail on older versions of PHP
Interestingly running the unit tests locally under PHP 7.2 on my Debian Testing box didn't show any of those failures, only the one I patched in my PR. (And running under HHVM didn't show the errors I patched in that PR either) |
I think the exceptions spawn from deprecations so they may depend on the underlying PHP configuration. |
replacing some configuration with annotations refs giorgiosironi#105 moving rand and mt_rand into Source-Implementations removing unused use statements replacing os specific tmp-dir with function calls fixing env-setting on windows handling int overflow for seeds on 32bit systems adjusting documentation
replacing some configuration with annotations refs giorgiosironi#105 moving rand and mt_rand into Source-Implementations removing unused use statements replacing os specific tmp-dir with function calls fixing env-setting on windows handling int overflow for seeds on 32bit systems adjusting documentation
replacing some configuration with annotations refs giorgiosironi#105 moving rand and mt_rand into Source-Implementations removing unused use statements replacing os specific tmp-dir with function calls fixing env-setting on windows handling int overflow for seeds on 32bit systems adjusting documentation
The According to the Travis CI build log, it seems that the |
@peter279k is right, running
on this branch yields
|
I guess these should be replaced by https://github.com/beberlei/assert |
@giorgiosironi , thank you for your reply. According to the official PHP doc, the warning message for
I don't think it's necessary to add another |
Is that backward compatible with how |
… string PHP 7.2 deprecated this pattern
See #114