| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | 11 | public function __construct( |
|
| 14 | VerificarPermisosInterface $verificarPermisosInterface, |
||
| 15 | Rol $rol, |
||
| 16 | string $recursoSolicitado |
||
| 17 | ) { |
||
| 18 | 11 | $this->_rol = $rol; |
|
| 19 | |||
| 20 | 11 | $this->_recursoSolicitado = $this->setRecursoSolicitado($recursoSolicitado); |
|
| 21 | |||
| 22 | 11 | $verificarPermisosInterface->verificar($this->_rol->rol(), $this->_recursoSolicitado); |
|
| 23 | 11 | } |
|
| 44 |