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