fix bugs on visa master

This commit is contained in:
2024-09-09 21:05:21 +05:00
parent b7ee29173c
commit fc697f6318
9 changed files with 408 additions and 376 deletions

View File

@@ -9,7 +9,7 @@ class DateHelperRepository
$month = [];
for ($m = 1; $m <= 12; $m++) {
$month[] = str_pad($m, 2, '0', STR_PAD_LEFT);
$month[] = str_pad(strval($m), 2, '0', STR_PAD_LEFT);
}
return $month;