| Conditions | 2 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function register(Container $pimple) |
||
| 23 | { |
||
| 24 | $pimple['logger'] = $pimple['log'] = function ($app) { |
||
| 25 | $config = $this->formatLogConfig($app); |
||
| 26 | |||
| 27 | if (!empty($config)) { |
||
| 28 | $app->rebind('config', $app['config']->merge($config)); |
||
| 29 | } |
||
| 30 | |||
| 31 | return new LogManager($app); |
||
| 32 | }; |
||
| 33 | } |
||
| 34 | |||
| 69 |