Conditions | 4 |
Paths | 6 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | 4 | protected function validate() |
|
31 | { |
||
32 | 4 | $num_params = 0; |
|
33 | 4 | foreach (['url', 'callback_data', 'switch_inline_query'] as $param) { |
|
34 | 4 | if (!empty($this->getProperty($param))) { |
|
35 | 4 | $num_params++; |
|
36 | } |
||
37 | } |
||
38 | 4 | if ($num_params !== 1) { |
|
39 | 3 | throw new TelegramException('You must use only one of these fields: url, callback_data, switch_inline_query!'); |
|
40 | } |
||
41 | 1 | } |
|
42 | } |
||
43 |