| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class NivelDeEstudios |
||
| 7 | { |
||
| 8 | private string $_nivelDeEstudios; |
||
| 9 | |||
| 10 | private $_niveles = array( |
||
| 11 | 'Sin información', |
||
| 12 | 'Primaria', |
||
| 13 | 'Secundaria', |
||
| 14 | 'Bachillerato', |
||
| 15 | 'Técnico superior', |
||
| 16 | 'Licenciatura', |
||
| 17 | 'Maestría', |
||
| 18 | 'Doctorado' |
||
| 19 | ); |
||
| 20 | |||
| 21 | public function __construct(string $nivelDeEstudios) |
||
| 24 | } |
||
| 25 | |||
| 26 | public function nivelDeEstudios(): string |
||
| 27 | { |
||
| 28 | return $this->_nivelDeEstudios; |
||
| 29 | } |
||
| 30 | |||
| 31 | private function setNivelDeEstudios(string $nivelDeEstudios): string |
||
| 39 | } |
||
| 40 | } |