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 ( dff47f...270109 )
by Asao
02:58
created
src/Inputs.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -89,8 +89,8 @@  discard block
 block discarded – undo
89 89
         if (!$this->inputs[$this->pagerKey]) {
90 90
             return $page;
91 91
         }
92
-        if ((int) $this->inputs[$this->pagerKey] > 0) {
93
-            return (int) $this->inputs[$this->pagerKey];
92
+        if ((int)$this->inputs[$this->pagerKey] > 0) {
93
+            return (int)$this->inputs[$this->pagerKey];
94 94
         }
95 95
         return $page;
96 96
     }
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
             return $this->path;
201 201
         }
202 202
         $page = (int)$page;
203
-        return $this->path . '?' . $this->pagerKey . '=' . $page;
203
+        return $this->path.'?'.$this->pagerKey.'='.$page;
204 204
     }
205 205
 
206 206
     /**
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     {
219 219
         $class = $this->defaultToHtml;
220 220
         $toHtml = new $class(Paginate::forge($this));
221
-        return (string) $toHtml;
221
+        return (string)$toHtml;
222 222
     }
223 223
 
224 224
     /**
Please login to merge, or discard this patch.