| Conditions | 3 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 51 | private function controladorPorDefectoExiste(): string |
||
| 52 | { |
||
| 53 | if (!file_exists(CONTROLADOR_DIR.CONTROLADOR_POR_DEFECTO.'.php') || !class_exists(CONTROLADOR_NAMESPACE.CONTROLADOR_POR_DEFECTO)) { |
||
| 54 | throw new Exception("El controlador por defecto no existe"); |
||
| 55 | } |
||
| 56 | |||
| 57 | return CONTROLADOR_POR_DEFECTO; |
||
| 58 | } |
||
| 60 |