| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 29 | public function register(Container $container) |
||
| 30 | { |
||
| 31 | $container['command_output'] = $this->output; |
||
| 32 | $container['logger'] = function($c){ |
||
| 33 | return new ConsoleLogger( |
||
| 34 | $c['command_output'], |
||
| 35 | [LogLevel::INFO => OutputInterface::VERBOSITY_NORMAL], |
||
| 36 | [LogLevel::INFO => null]); |
||
| 37 | }; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |