Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | protected function configure() |
||
16 | { |
||
17 | $this->setName('db:seed') |
||
18 | ->setDescription('Seed the database.') |
||
19 | ->setHelp('This command will run the given seeder class.') |
||
20 | ->addArgument( |
||
21 | 'class', |
||
22 | InputArgument::OPTIONAL, |
||
23 | 'The name of the seeder class to run.', |
||
24 | 'DatabaseSeeder' |
||
25 | ); |
||
26 | } |
||
27 | |||
45 |