-
Notifications
You must be signed in to change notification settings - Fork 40
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 return value from DateTimeImmutable::createFromFormat() #46
Conversation
🙃 |
@zonuexe I think you may need to add: |
It looks like the test passed except for PHP 7.3. The measures must be taken at the other PR. |
.travis.yml
Outdated
@@ -1,5 +1,6 @@ | |||
sudo: false | |||
language: php | |||
dist: trusty |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using trusty
only for legacy PHP versions:
matrix:
include:
- dist: trusty
php: 5.4
- dist: trusty
php: 5.5
allow_failuers:
- php: master
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, the tests failed for master
. Add 7.3
to the list of supported versions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@IonBazan Thank you for your suggestion!
The changes in .travis.yml are reverted as they seem to have blocked the launch of Travis CI. |
@zonuexe Probably due to invalid syntax. Please check it with http://lint.travis-ci.org/ first. |
Thanks, good catch. |
When the format string contains
!
or!
, theDateTime
(mutable) class is returned.refs #30