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