| 1 | <?php |
||
| 17 | class CustomerPhone implements CustomerPhoneInterface |
||
| 18 | { |
||
| 19 | /** @var string */ |
||
| 20 | protected $countryCode; |
||
| 21 | |||
| 22 | /** @var string */ |
||
| 23 | protected $number; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getCountryCode(): string |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getNumber(): string |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | public function setCountryCode(string $countryCode): CustomerPhone |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | public function setNumber(string $number): CustomerPhone |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return array |
||
| 61 | */ |
||
| 62 | public function toArray(): array |
||
| 69 | } |
||
| 70 |