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
Pull Request — master (#11)
by
unknown
10:44
created
src/Bus.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,8 +154,9 @@
 block discarded – undo
154 154
      * @return mixed
155 155
      */
156 156
     private function getDefaultValueOrFail($parameter){
157
-        if (!$parameter->isDefaultValueAvailable())
158
-            throw new InvalidArgumentException("Unable to map input to command: {$parameter->getName()}");
157
+        if (!$parameter->isDefaultValueAvailable()) {
158
+                    throw new InvalidArgumentException("Unable to map input to command: {$parameter->getName()}");
159
+        }
159 160
 
160 161
         return $parameter->getDefaultValue();
161 162
     }
Please login to merge, or discard this patch.