Total Complexity | 4 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | final class Phone |
||
19 | { |
||
20 | use DataAware; |
||
21 | |||
22 | public function isFax(): bool |
||
23 | { |
||
24 | return $this->get('is-fax'); |
||
25 | } |
||
26 | |||
27 | public function getNumber(): string |
||
30 | } |
||
31 | |||
32 | public function getTownCode(): ?string |
||
33 | { |
||
34 | return $this->get('phone-town-code'); |
||
35 | } |
||
36 | |||
37 | public function getType(): ?string |
||
40 | } |
||
41 | } |
||
42 |