Total Complexity | 2 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
28 | class InlineQuery extends Entity |
||
29 | { |
||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | protected function subEntities(): array |
||
38 | ]; |
||
39 | } |
||
40 | |||
41 | /** |
||
42 | * Answer this inline query with the passed results. |
||
43 | * |
||
44 | * @param InlineQueryResult[] $results |
||
45 | * @param array $data |
||
46 | * |
||
47 | * @return ServerResponse |
||
48 | */ |
||
49 | public function answer(array $results, array $data = []): ServerResponse |
||
57 |