Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function __invoke(array $config): LoggerInterface |
||
16 | { |
||
17 | $handler = new InfluxDBHandler( |
||
18 | $this->app->make(Database::class), |
||
19 | $config['measurement'] ?? null, |
||
20 | $config['level'] ?? Logger::INFO, |
||
21 | $config['bubble'] ?? true |
||
22 | ); |
||
23 | |||
24 | return new Logger($this->parseChannel($config), [$handler]); |
||
25 | } |
||
27 |