Code Duplication    Length = 3-3 lines in 2 locations

src/SQLParser/SQLParser.php 2 locations

@@ 627-629 (lines=3) @@
624
625
            case ',':
626
                $assignment = $this->getAssignment($baseExpr);
627
                if (!$isUpdate && $varType !== false) {
628
                    $assignment['sub_tree'][0]['expr_type'] = $varType;
629
                }
630
                $result[] = $assignment;
631
                $baseExpr = '';
632
                $varType = false;
@@ 642-644 (lines=3) @@
639
640
        if (trim($baseExpr) !== '') {
641
            $assignment = $this->getAssignment($baseExpr);
642
            if (!$isUpdate && $varType !== false) {
643
                $assignment['sub_tree'][0]['expr_type'] = $varType;
644
            }
645
            $result[] = $assignment;
646
        }
647