1 | <?php |
||
11 | class QA extends AbstractPlugin |
||
12 | { |
||
13 | private $questions; |
||
14 | |||
15 | /** |
||
16 | * @throws \Exception |
||
17 | * |
||
18 | * @return string |
||
19 | */ |
||
20 | 3 | public function index() |
|
40 | |||
41 | /** |
||
42 | * @throws \Exception |
||
43 | * |
||
44 | * @return array |
||
45 | */ |
||
46 | 3 | public function getQuestions(): array |
|
54 | |||
55 | /** |
||
56 | * @param array $questions |
||
57 | */ |
||
58 | 3 | public function setQuestions(array $questions) |
|
62 | } |
||
63 |