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 ( cd43c0...644c59 )
by Asao
01:26
created
src/Inputs.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         if (!$this->inputs[$key]) {
101 101
             return $default;
102 102
         }
103
-        return (int) $this->inputs[$key];
103
+        return (int)$this->inputs[$key];
104 104
     }
105 105
 
106 106
     /**
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
             return $this->path;
209 209
         }
210 210
         $page = (int)$page;
211
-        return $this->path . '?' . $this->pagerKey . '=' . $page;
211
+        return $this->path.'?'.$this->pagerKey.'='.$page;
212 212
     }
213 213
 
214 214
     /**
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
     {
227 227
         $class = $this->defaultToHtml;
228 228
         $toHtml = new $class(Paginate::forge($this));
229
-        return (string) $toHtml;
229
+        return (string)$toHtml;
230 230
     }
231 231
 
232 232
     /**
Please login to merge, or discard this patch.