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