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 ( 7a4ba9...ae578b )
by Charles
9s
created
code/services/IPLoggerService.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
      * the limit apply a ban.
175 175
      *
176 176
      * @param string $event The event to check
177
-     * @return true|string Is the client allowd to perform $event
177
+     * @return boolean Is the client allowd to perform $event
178 178
      */
179 179
     public function checkAllowed($event)
180 180
     {
Please login to merge, or discard this 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.