| Total Complexity | 7 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 6 | class TipoDeContratacion |
||
| 7 | { |
||
| 8 | private string $_tipoDeContratacion; |
||
| 9 | |||
| 10 | public function __construct(string $tipoDeConsentratacion) |
||
| 11 | { |
||
| 12 | $this->_tipoDeContratacion = $this->setTipoDeContratacion($tipoDeConsentratacion); |
||
| 13 | } |
||
| 14 | |||
| 15 | public function tipoDeContratacion(): string |
||
| 18 | } |
||
| 19 | |||
| 20 | private function setTipoDeContratacion(string $tipoDeConsentratacion): string |
||
| 33 | } |
||
| 34 | } |