Skip to content

Commit d002e8b

Browse files
committed
Document that lack of break is intentional
Signed-off-by: Michal Čihař <[email protected]>
1 parent 2d35707 commit d002e8b

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

src/Statements/LoadStatement.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -352,6 +352,7 @@ public function parseKeywordsAccordingToState($parser, $list, $state)
352352

353353
return $state;
354354
}
355+
// no break
355356
case 4:
356357
if ($token->keyword === 'CHARACTER SET') {
357358
++$list->idx;
@@ -360,6 +361,7 @@ public function parseKeywordsAccordingToState($parser, $list, $state)
360361

361362
return $state;
362363
}
364+
// no break
363365
case 5:
364366
if ($token->keyword === 'FIELDS'
365367
|| $token->keyword === 'COLUMNS'
@@ -370,6 +372,7 @@ public function parseKeywordsAccordingToState($parser, $list, $state)
370372

371373
return $state;
372374
}
375+
// no break
373376
case 6:
374377
if ($token->keyword === 'IGNORE') {
375378
++$list->idx;
@@ -387,6 +390,7 @@ public function parseKeywordsAccordingToState($parser, $list, $state)
387390

388391
return $state;
389392
}
393+
// no break
390394
case 7:
391395
if ($token->keyword === 'SET') {
392396
++$list->idx;
@@ -395,6 +399,7 @@ public function parseKeywordsAccordingToState($parser, $list, $state)
395399

396400
return $state;
397401
}
402+
// no break
398403
default:
399404
}
400405

0 commit comments

Comments
 (0)