| 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 setTipoDePuesto(string $tipoDePuesto): string |
||
| 21 | { |
||
| 22 | if( |
||
| 23 | $tipoDePuesto == 'Operativo' || |
||
| 24 | $tipoDePuesto == 'Profesional o técnico' || |
||
| 25 | $tipoDePuesto == 'Supervisor' || |
||
| 26 | $tipoDePuesto == 'Gerente' |
||
| 27 | ) |
||
| 28 | { |
||
| 29 | return $tipoDePuesto; |
||
| 30 | } |
||
| 31 | |||
| 32 | throw new Exception("Error en Tipo de Puesto", 1); |
||
| 33 | } |
||
| 34 | } |