| 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 | $apiKey = (string) ($options['apiKey'] ?? ''); |
|
| 16 | 1 | $channel = (string) ($options['channel'] ?? ''); |
|
| 17 | 1 | $level = (int) ($options['level'] ?? Logger::DEBUG); |
|
| 18 | 1 | $bubble = (bool) ($options['bubble'] ?? true); |
|
| 19 | |||
| 20 | 1 | return new TelegramBotHandler( |
|
| 21 | 1 | $apiKey, |
|
| 22 | 1 | $channel, |
|
| 23 | 1 | $level, |
|
| 24 | 1 | $bubble |
|
| 25 | ); |
||
| 26 | } |
||
| 27 | } |
||
| 28 |