Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 1 | public function __invoke(array $options) |
|
14 | { |
||
15 | 1 | $messageType = (int) ($options['messageType'] ?? ErrorLogHandler::OPERATING_SYSTEM); |
|
16 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
17 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
18 | 1 | $expandNewlines = (bool) ($options['expandNewlines'] ?? false); |
|
19 | |||
20 | 1 | return new ErrorLogHandler($messageType, $level, $bubble, $expandNewlines); |
|
21 | } |
||
22 | } |
||
23 |