| 1 | <?php |
||
| 14 | class Phone |
||
| 15 | { |
||
| 16 | use SerializerTrait; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string |
||
| 20 | */ |
||
| 21 | private $areaCode; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | private $number; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $areaCode |
||
| 30 | * @param string $number |
||
| 31 | */ |
||
| 32 | 21 | public function __construct($areaCode, $number) |
|
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | 6 | public function getAreaCode() |
|
| 45 | |||
| 46 | /** |
||
| 47 | * @return string |
||
| 48 | */ |
||
| 49 | 6 | public function getNumber() |
|
| 53 | } |
||
| 54 |