Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | protected function configure(){ |
||
19 | $this->setName('seed:build') |
||
20 | ->setDescription('Create seeds data') |
||
21 | ->setDefinition( |
||
22 | new InputDefinition(array( |
||
23 | new InputOption('class', 'c', InputOption::VALUE_REQUIRED), |
||
24 | new InputOption('amount', 'a', InputOption::VALUE_OPTIONAL) |
||
25 | )) |
||
26 | ); |
||
27 | } |
||
28 | |||
41 |