Code Duplication    Length = 7-7 lines in 2 locations

src/Commands/ListCommand.php 1 location

@@ 79-85 (lines=7) @@
76
     *
77
     * @return array
78
     */
79
    protected function getOptions()
80
    {
81
        return [
82
            ['only', null, InputOption::VALUE_OPTIONAL, 'Types of modules will be displayed.', null],
83
            ['direction', 'd', InputOption::VALUE_OPTIONAL, 'The direction of ordering.', 'asc'],
84
        ];
85
    }
86
}
87

src/Commands/MigrateStatusCommand.php 1 location

@@ 86-92 (lines=7) @@
83
     *
84
     * @return array
85
     */
86
    protected function getOptions()
87
    {
88
        return [
89
            ['direction', 'd', InputOption::VALUE_OPTIONAL, 'The direction of ordering.', 'asc'],
90
            ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'],
91
        ];
92
    }
93
}