Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Lines | 12 |
Ratio | 100 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
13 | 1 | public function __invoke(array $options) |
|
14 | { |
||
15 | 1 | $url = (string) ($options['url'] ?? ''); |
|
16 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
17 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
18 | |||
19 | 1 | return new CubeHandler( |
|
20 | 1 | $url, |
|
21 | 1 | $level, |
|
22 | 1 | $bubble |
|
23 | ); |
||
24 | } |
||
25 | } |
||
26 |