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.
Passed
Push — master ( a311ce...1f15fb )
by Samuel
06:36
created
src/Acl.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -222,16 +222,13 @@
 block discarded – undo
222 222
             if ($object instanceof RoleInterface)
223 223
             {
224 224
                 $this->addRole((string)$object);
225
-            }
226
-            elseif ($object instanceof ResourceInterface)
225
+            } elseif ($object instanceof ResourceInterface)
227 226
             {
228 227
                 $this->addResource((string)$object);
229
-            }
230
-            elseif ($object instanceof PermissionInterface)
228
+            } elseif ($object instanceof PermissionInterface)
231 229
             {
232 230
                 $this->addPermission((string)$object);
233
-            }
234
-            else {
231
+            } else {
235 232
                 throw new Exception("$object must implement one of RoleInterface, " .
236 233
                     "ResourceInterface and PermissionInterface");
237 234
             }   
Please login to merge, or discard this patch.