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 | $applicationName = $options['applicationName'] ?? ''; |
|
15 | 1 | $systemName = $options['systemName'] ?? ''; |
|
16 | 1 | $extraPrefix = $options['extraPrefix'] ?? ''; |
|
17 | 1 | $contextPrefix = (string) ($options['contextPrefix'] ?? 'ctxt_'); |
|
18 | |||
19 | 1 | return new LogstashFormatter($applicationName, $systemName, $extraPrefix, $contextPrefix); |
|
20 | } |
||
21 | } |
||
22 |