Passed
Branch main (d43369)
by Lucas
07:32
created
Category
src/Html/Generator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@
 block discarded – undo
50 50
             );
51 51
         }
52 52
 
53
-        for ($i=1; $i <= $months; $i++)
53
+        for ($i = 1; $i <= $months; $i++)
54 54
         {
55
-            $digit = $i < 10 ? '0'.$i : $i;
55
+            $digit = $i < 10 ? '0' . $i : $i;
56 56
             $currentDate = "{$currentYear}-{$digit}-20";
57 57
             $selected = $currentMonth == $digit ? 'selected' : '';
58 58
             $formatedMonth = $formatter != ''
Please login to merge, or discard this patch.