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.
Completed
Push — master ( 25eb14...7cd9be )
by
unknown
20s
created
code/services/IPLoggerService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@
 block discarded – undo
121 121
      */
122 122
     public function getPastDate($seconds)
123 123
     {
124
-        $interval = new DateInterval('PT' . $seconds  . 'S');
124
+        $interval = new DateInterval('PT'.$seconds.'S');
125 125
         $interval->invert = 1;
126 126
 
127 127
         $pastDate = new DateTime();
Please login to merge, or discard this patch.
code/extensions/IPLoggerSecurityAdminExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
             $loggerService = $this->loggerService;
45 45
             $dataColumns->setFieldFormatting(
46 46
                 array(
47
-                    'Active' => function ($value, $item) use ($loggerService) {
47
+                    'Active' => function($value, $item) use ($loggerService) {
48 48
                         $banSecondsAgo = $item->obj('Created')->TimeDiffIn('seconds');
49 49
                         $banSeconds = $loggerService->getRule($item->Event)['bantime'];
50 50
 
Please login to merge, or discard this patch.