| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | public function __construct(OutputInterface $output, array $verbosityLevelMap = array(), array $formatLevelMap = array()) |
||
| 21 | { |
||
| 22 | $verbosityLevelMap = array( |
||
| 23 | LogLevel::EMERGENCY => OutputInterface::VERBOSITY_NORMAL, |
||
| 24 | LogLevel::ALERT => OutputInterface::VERBOSITY_NORMAL, |
||
| 25 | LogLevel::CRITICAL => OutputInterface::VERBOSITY_NORMAL, |
||
| 26 | LogLevel::ERROR => OutputInterface::VERBOSITY_NORMAL, |
||
| 27 | LogLevel::WARNING => OutputInterface::VERBOSITY_NORMAL, |
||
| 28 | LogLevel::NOTICE => OutputInterface::VERBOSITY_NORMAL, |
||
| 29 | LogLevel::INFO => OutputInterface::VERBOSITY_NORMAL, |
||
| 30 | LogLevel::DEBUG => OutputInterface::VERBOSITY_VERY_VERBOSE, |
||
| 31 | ); |
||
| 32 | |||
| 33 | parent::__construct($output, $verbosityLevelMap, $formatLevelMap); |
||
| 34 | } |
||
| 36 |