Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
9 | class QuestionViewController extends AbstractController |
||
10 | { |
||
11 | /** |
||
12 | * @var QuestionRepository |
||
13 | */ |
||
14 | private $questionRepository; |
||
15 | |||
16 | /** |
||
17 | * @param QuestionRepository $questionRepository |
||
18 | */ |
||
19 | public function __construct(QuestionRepository $questionRepository) |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return Response |
||
26 | */ |
||
27 | public function index(): Response |
||
39 |