-
Notifications
You must be signed in to change notification settings - Fork 58
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
WIP: Release 4.2.0 - Changes config implementation #125
base: master
Are you sure you want to change the base?
Conversation
Fix polyfill error with Kint dependency
Codecov Report
@@ Coverage Diff @@
## master #125 +/- ##
=============================================
+ Coverage 35.81% 57.16% +21.35%
+ Complexity 5435 5385 -50
=============================================
Files 144 151 +7
Lines 17293 17109 -184
=============================================
+ Hits 6193 9780 +3587
+ Misses 11100 7329 -3771
📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
There are too many results to compare View more on Code Climate. |
SonarCloud Quality Gate failed. 17 Bugs |
Hey, I'd like to help finishing this up, do you have a list of what's pending or some other way for me to know where to start giving a hand? |
list($short, $full) = explode('|', strftime('%b|%B', strtotime("2001-${i}-01"))); | ||
$this->iShortMonth[$aLocale][] = ucfirst($short); | ||
$this->iMonthName[$aLocale][] = ucfirst($full); | ||
list($short, $full) = explode('|', strftime('%b|%B', strtotime("2001-${i}-01"))); |
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.
strftime is deprecated as of php8.1 https://www.php.net/manual/en/function.strftime.php
No description provided.