| Conditions | 5 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | private function setTipoDeContratacion(string $tipoDeConsentratacion): string |
||
| 21 | { |
||
| 22 | if( |
||
| 23 | $tipoDeConsentratacion == 'Por obra o proyecto' || |
||
| 24 | $tipoDeConsentratacion == 'Por tiempo determinado (temporal)' || |
||
| 25 | $tipoDeConsentratacion == 'Tiempo indeterminado' || |
||
| 26 | $tipoDeConsentratacion == 'Honorarios' |
||
| 27 | ) |
||
| 28 | { |
||
| 29 | return $tipoDeConsentratacion; |
||
| 30 | } |
||
| 31 | |||
| 32 | throw new Exception("Error en Tipo de Contratación", 1); |
||
| 33 | } |
||
| 34 | } |