Test Failed
Push — master ( c19dce...c10a28 )
by Jinyun
02:53
created
src/leetcode/DayOfTheWeek.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.