@@ 98-105 (lines=8) @@ | ||
95 | * |
|
96 | * @return array |
|
97 | */ |
|
98 | protected function getOptions() |
|
99 | { |
|
100 | return [ |
|
101 | ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'], |
|
102 | ['force', null, InputOption::VALUE_NONE, 'Force the operation to run while in production.'], |
|
103 | ['pretend', null, InputOption::VALUE_NONE, 'Dump the SQL queries that would be run.'] |
|
104 | ]; |
|
105 | } |
|
106 | } |
|
107 |
@@ 124-131 (lines=8) @@ | ||
121 | * |
|
122 | * @return array |
|
123 | */ |
|
124 | protected function getOptions() |
|
125 | { |
|
126 | return [ |
|
127 | ['class', null, InputOption::VALUE_OPTIONAL, 'The class name of the module\'s root seeder.'], |
|
128 | ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to seed.'], |
|
129 | ['force', null, InputOption::VALUE_NONE, 'Force the operation to run while in production.'], |
|
130 | ]; |
|
131 | } |
|
132 | } |
|
133 |