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 ( 270109...cd43c0 )
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
-        $value = (int) $this->inputs[$key];
103
+        $value = (int)$this->inputs[$key];
104 104
         return is_integer($value) ? $value : $default;
105 105
     }
106 106
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
             return $this->path;
210 210
         }
211 211
         $page = (int)$page;
212
-        return $this->path . '?' . $this->pagerKey . '=' . $page;
212
+        return $this->path.'?'.$this->pagerKey.'='.$page;
213 213
     }
214 214
 
215 215
     /**
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
     {
228 228
         $class = $this->defaultToHtml;
229 229
         $toHtml = new $class(Paginate::forge($this));
230
-        return (string) $toHtml;
230
+        return (string)$toHtml;
231 231
     }
232 232
 
233 233
     /**
Please login to merge, or discard this patch.