| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Lines | 12 |
| Ratio | 100 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | 1 | public function __invoke(array $options) |
|
| 18 | { |
||
| 19 | 1 | $publisher = $this->getService($options['publisher'] ?? null); |
|
| 20 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 21 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
| 22 | |||
| 23 | 1 | return new GelfHandler( |
|
| 24 | 1 | $publisher, |
|
| 25 | 1 | $level, |
|
| 26 | 1 | $bubble |
|
| 27 | ); |
||
| 28 | } |
||
| 29 | } |
||
| 30 |