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