Total Complexity | 5 |
Total Lines | 72 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | abstract class BaseController |
||
14 | { |
||
15 | /** |
||
16 | * @var ExerciseFocusedPlugin |
||
17 | */ |
||
18 | protected $plugin; |
||
19 | |||
20 | /** |
||
21 | * @var HttpRequest |
||
22 | */ |
||
23 | protected $request; |
||
24 | |||
25 | /** |
||
26 | * @var EntityManager |
||
27 | */ |
||
28 | protected $em; |
||
29 | |||
30 | /** |
||
31 | * @var LogRepository |
||
32 | */ |
||
33 | protected $logRepository; |
||
34 | |||
35 | /** |
||
36 | * @var Template |
||
37 | */ |
||
38 | protected $template; |
||
39 | |||
40 | public function __construct( |
||
50 | } |
||
51 | |||
52 | /** |
||
53 | * @throws Exception |
||
54 | */ |
||
55 | public function __invoke(): HttpResponse |
||
62 | } |
||
63 | |||
64 | protected function renderView( |
||
87 |