Test Failed
Pull Request — master (#200)
by
unknown
06:18 queued 02:53
created
src/Components/Check.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -161,7 +161,9 @@
 block discarded – undo
161 161
                         if(count($bracketStack) > 1) {
162 162
                             array_pop($bracketStack);
163 163
                             $state = 2;
164
-                        } else $state = 5;
164
+                        } else {
165
+                            $state = 5;
166
+                        }
165 167
                     } elseif(in_array($token->value, self::$operatorsArray)) {
166 168
                         $ret->operators[] = $token->value;
167 169
                         $state = 3;
Please login to merge, or discard this patch.