We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e4430a commit 7143601Copy full SHA for 7143601
src/php/classes/locale.c
@@ -519,7 +519,7 @@ static UCalendarDaysOfWeek weekDayEcmaToIcu(ecma402_dayOfWeek day) {
519
return UCAL_FRIDAY;
520
case ECMA402_SATURDAY:
521
return UCAL_SATURDAY;
522
- case ECMA402_SUNDAY:
+ default:
523
return UCAL_SUNDAY;
524
}
525
@@ -538,7 +538,7 @@ static ecma402_dayOfWeek weekDayIcuToEcma(UCalendarDaysOfWeek day) {
538
return ECMA402_FRIDAY;
539
case UCAL_SATURDAY:
540
return ECMA402_SATURDAY;
541
- case UCAL_SUNDAY:
542
return ECMA402_SUNDAY;
543
544
0 commit comments