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 ( 480fbc...1ca0f9 )
by Krzysztof
02:26
created
src/Orange.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -181,8 +181,11 @@
 block discarded – undo
181 181
             if (!empty($element->plaintext)) {
182 182
                 $value = trim($value);
183 183
                 $value_int = intval($value);
184
-                if (is_int($value_int)) $result = $value_int;
185
-                else $result = $value;
184
+                if (is_int($value_int)) {
185
+                    $result = $value_int;
186
+                } else {
187
+                    $result = $value;
188
+                }
186 189
             } else {
187 190
                 $result = false;
188 191
             }
Please login to merge, or discard this patch.