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
Branch development (1ea943)
by butschster
05:38
created
src/Traits/Renderable.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
     protected $viewPath;
13 13
 
14 14
     /**
15
-     * @param string|View $view
15
+     * @param string $view
16 16
      *
17 17
      * @return $this
18 18
      */
Please login to merge, or discard this patch.
src/AliasBinder.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -145,10 +145,10 @@
 block discarded – undo
145 145
      */
146 146
     public function __call($name, $arguments)
147 147
     {
148
-        if (! $this->hasAlias($name)) {
148
+        if (!$this->hasAlias($name)) {
149 149
             throw new BadMethodCallException($name);
150 150
         }
151 151
 
152
-        return $this->makeClass($name, $arguments);;
152
+        return $this->makeClass($name, $arguments); ;
153 153
     }
154 154
 }
Please login to merge, or discard this patch.