Total Complexity | 7 |
Total Lines | 42 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
11 | class FiController extends AbstractController |
||
12 | { |
||
13 | use FiCoreControllerTrait, FiCoreCrudControllerTrait, FiCoreTabellaControllerTrait; |
||
|
|||
14 | |||
15 | protected $bundle; |
||
16 | protected $template; |
||
17 | protected $controller; |
||
18 | protected $permessi; |
||
19 | |||
20 | 17 | public function __construct(PermessiManager $permessi, EngineInterface $template) |
|
34 | 17 | } |
|
35 | |||
36 | 13 | protected function getBundle() |
|
37 | { |
||
38 | 13 | return $this->bundle; |
|
39 | } |
||
40 | |||
41 | 17 | protected function getController() |
|
42 | { |
||
43 | 17 | return $this->controller; |
|
44 | } |
||
45 | |||
46 | 17 | protected function getPermessi() |
|
47 | { |
||
48 | 17 | return $this->permessi; |
|
49 | } |
||
50 | 10 | protected function getTemplate() |
|
53 | } |
||
54 | } |
||
55 |