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 (#1)
by Šimon
05:05 queued 02:04
created
src/Language/AST/Node.php 1 patch
Braces   +6 added lines, -4 removed lines patch added patch discarded remove patch
@@ -127,11 +127,13 @@
 block discarded – undo
127 127
         }
128 128
 
129 129
         foreach (get_object_vars($node) as $prop => $propValue) {
130
-            if (isset($result[$prop]))
131
-                continue;
130
+            if (isset($result[$prop])) {
131
+                            continue;
132
+            }
132 133
 
133
-            if ($propValue === null)
134
-                continue;
134
+            if ($propValue === null) {
135
+                            continue;
136
+            }
135 137
 
136 138
             if (is_array($propValue) || $propValue instanceof NodeList) {
137 139
                 $tmp = [];
Please login to merge, or discard this patch.