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