GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( e22738...bc2961 )
by
unknown
01:53
created
src/Helpers/Datetime.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1556,10 +1556,12 @@
 block discarded – undo
1556 1556
         }
1557 1557
         $range[] = $from->format($format);
1558 1558
 
1559
-        if (is_int($arg)) // Day intervals
1559
+        if (is_int($arg)) {
1560
+            // Day intervals
1560 1561
         {
1561 1562
             do {
1562 1563
                 $from->modify('+1 day');
1564
+        }
1563 1565
                 $range[] = $from->format($format);
1564 1566
             } while (--$arg > 0);
1565 1567
         } else // end date UNIX timestamp
Please login to merge, or discard this patch.