Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
12 | 1 | public function __invoke(array $options) |
|
13 | { |
||
14 | 1 | $systemName = $options['systemName'] ?? null; |
|
15 | 1 | $extraPrefix = $options['extraPrefix'] ?? null; |
|
16 | 1 | $contextPrefix = $options['contextPrefix'] ?? 'ctxt_'; |
|
17 | 1 | $maxLength = $options['maxLength'] ?? null; |
|
18 | |||
19 | 1 | return new GelfMessageFormatter($systemName, $extraPrefix, $contextPrefix, $maxLength); |
|
20 | } |
||
21 | } |
||
22 |