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