| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 4 | class Departamento |
||
| 5 | { |
||
| 6 | private $_departamento; |
||
| 7 | |||
| 8 | public function __construct(string $departamento) |
||
| 9 | { |
||
| 10 | $this->_departamento = $this->setDepartamento($departamento); |
||
| 11 | } |
||
| 12 | |||
| 13 | public function departamento(): string |
||
| 16 | } |
||
| 17 | |||
| 18 | private function setDepartamento(string $departamento): string |
||
| 21 | } |
||
| 22 | } |