Code Duplication    Length = 4-4 lines in 2 locations

module/Application/src/Application/Model/DbStructUpdater.php 2 locations

@@ 691-694 (lines=4) @@
688
                    array_push($stack, $m[1][0]);
689
                }
690
            }
691
            elseif (!empty($m[2][0])) // opening comment / *
692
            {
693
                array_push($stack, $m[2][0]);
694
            }
695
            elseif (!empty($m[4][0])) // opening comment --
696
            {
697
                array_push($stack, $m[4][0]);
@@ 695-698 (lines=4) @@
692
            {
693
                array_push($stack, $m[2][0]);
694
            }
695
            elseif (!empty($m[4][0])) // opening comment --
696
            {
697
                array_push($stack, $m[4][0]);
698
            }
699
        }
700
        return false;
701
    }