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