Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class Pessoa implements JsonSerializable |
||
10 | { |
||
11 | use TraitEntity; |
||
12 | |||
13 | private string $nome_pessoa; |
||
14 | private TipoPessoa $tipo_pessoa; |
||
15 | |||
16 | public function setNomePessoa($nome): self |
||
20 | } |
||
21 | |||
22 | public function tipoPessoa(): TipoPessoa |
||
29 | } |
||
30 | |||
31 | public function setTipoPessoa(TipoPessoa $tipoPessoa): self |
||
35 | } |
||
36 | } |