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 ( 6993dc...6b6597 )
by Vadim
02:09
created
BeforeQueryTrait.php 1 patch
Braces   +7 added lines, -6 removed lines patch added patch discarded remove patch
@@ -19,11 +19,12 @@
 block discarded – undo
19 19
             }
20 20
         }
21 21
 
22
-        if ($obj->hasAttribute($obj->removedAttribute))
23
-            return (new DynamicQuery($obj))->findRemoved()->andFilterWhere($condition);
24
-        elseif ($obj->isNestedSet())
25
-            return (new DynamicQuery($obj))->andFilterWhere($condition);
26
-        else
27
-            return parent::find()->andFilterWhere($condition);
22
+        if ($obj->hasAttribute($obj->removedAttribute)) {
23
+                    return (new DynamicQuery($obj))->findRemoved()->andFilterWhere($condition);
24
+        } elseif ($obj->isNestedSet()) {
25
+                    return (new DynamicQuery($obj))->andFilterWhere($condition);
26
+        } else {
27
+                    return parent::find()->andFilterWhere($condition);
28
+        }
28 29
     }
29 30
 }
Please login to merge, or discard this patch.