Passed
Pull Request — master (#363)
by
unknown
09:59
created
src/Statements/WithStatement.php 1 patch
Indentation   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@  discard block
 block discarded – undo
22 22
 
23 23
 /**
24 24
  * `WITH` statement.
25
-
26 25
  *  WITH [RECURSIVE] query_name [ (column_name [,...]) ] AS (SELECT ...) [, ...]
27 26
  */
28 27
 final class WithStatement extends Statement
@@ -240,11 +239,11 @@  discard block
 block discarded – undo
240 239
 
241 240
         // 5 is the only valid end state
242 241
         if ($state !== 5) {
243
-             /**
244
-             * Token parsed at this moment.
245
-             *
246
-             * @var Token
247
-             */
242
+                /**
243
+                 * Token parsed at this moment.
244
+                 *
245
+                 * @var Token
246
+                 */
248 247
             $token = $list->tokens[$list->idx];
249 248
 
250 249
             $parser->error('Unexpected end of the WITH CTE.', $token);
Please login to merge, or discard this patch.