@@ -12,7 +12,7 @@ |
||
12 | 12 | return ''; |
13 | 13 | } |
14 | 14 | |
15 | - $isLeapYear = static function (int $x): bool { |
|
15 | + $isLeapYear = static function(int $x): bool { |
|
16 | 16 | return ($x % 400 === 0) || ($x % 4 === 0 && $x % 100 !== 0); |
17 | 17 | }; |
18 | 18 | $days = -1; // Start from 1971-01-01, remove that day. |