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 ( cf9260...b52382 )
by
unknown
03:19
created
src/Helpers/Datetime.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1557,10 +1557,12 @@
 block discarded – undo
1557 1557
         }
1558 1558
         $range[] = $from->format($format);
1559 1559
 
1560
-        if (is_int($arg)) // Day intervals
1560
+        if (is_int($arg)) {
1561
+            // Day intervals
1561 1562
         {
1562 1563
             do {
1563 1564
                 $from->modify('+1 day');
1565
+        }
1564 1566
                 $range[] = $from->format($format);
1565 1567
             } while (--$arg > 0);
1566 1568
         } else // end date UNIX timestamp
Please login to merge, or discard this patch.