| Conditions | 1 |
| Paths | 1 |
| Total Lines | 15 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | protected function configureVariables() |
||
| 36 | { |
||
| 37 | return array( |
||
| 38 | 'severity' => array( |
||
| 39 | 'type' => 'int', |
||
| 40 | 'label' => 'Severity of message (use OutputInterface::VERBOSITY_* constants)', |
||
| 41 | 'default' => OutputInterface::VERBOSITY_NORMAL |
||
| 42 | ), |
||
| 43 | 'newLine' => array( |
||
| 44 | 'type' => 'bool', |
||
| 45 | 'default' => true, |
||
| 46 | 'label' => 'Whether to print a new line after message' |
||
| 47 | ), |
||
| 48 | ); |
||
| 49 | } |
||
| 50 | |||
| 62 |