Passed
Pull Request — master (#334)
by Antoine
08:21
created
src/Statements/WithStatement.php 2 patches
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,6 @@
 block discarded – undo
21 21
 
22 22
 /**
23 23
  * `WITH` statement.
24
-
25 24
  *  WITH [RECURSIVE] query_name [ (column_name [,...]) ] AS (SELECT ...) [, ...]
26 25
  */
27 26
 class WithStatement extends Statement
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
             }
181 181
 
182 182
             ++$list->idx;
183
-            if (! isset($list->tokens[$list->idx])) {
183
+            if (!isset($list->tokens[$list->idx])) {
184 184
                 break;
185 185
             }
186 186
 
Please login to merge, or discard this patch.