| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | 1 | protected function configure() |
|
| 19 | { |
||
| 20 | 1 | $this->setName('yuml:mappings') |
|
| 21 | 1 | ->setDescription('Generate an image from yuml.me of doctrine metadata') |
|
| 22 | 1 | ->addOption( |
|
| 23 | 1 | 'filename', |
|
| 24 | 1 | 'f', |
|
| 25 | 1 | InputOption::VALUE_REQUIRED, |
|
| 26 | 1 | 'Output filename', |
|
| 27 | 1 | 'yuml-mapping.png' |
|
| 28 | ); |
||
| 29 | 1 | } |
|
| 30 | |||
| 42 |