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 ( 413ca6...9053fe )
by Marceau
03:52
created
src/Crud.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,7 @@
 block discarded – undo
47 47
         if (is_string($crudable))
48 48
         {
49 49
             return new CrudEntry(new $crudable);
50
-        }
51
-        else if (is_object($crudable) && array_key_exists(Crudable::class, class_uses($crudable)))
50
+        } else if (is_object($crudable) && array_key_exists(Crudable::class, class_uses($crudable)))
52 51
         {
53 52
             return new CrudEntry($crudable);
54 53
         }
Please login to merge, or discard this patch.