1 | <?php |
||
7 | class Phone extends Model |
||
8 | { |
||
9 | protected $country = null; |
||
10 | |||
11 | protected $city = null; |
||
12 | |||
13 | protected $number = null; |
||
14 | |||
15 | protected $sanitizedNumber = null; |
||
16 | |||
17 | protected $call = null; |
||
18 | |||
19 | /** |
||
20 | * Retrieve the country property |
||
21 | * |
||
22 | * @return string|null |
||
23 | */ |
||
24 | 5 | public function getCountry() |
|
28 | |||
29 | /** |
||
30 | * Retrieve the city property |
||
31 | * |
||
32 | * @return string|null |
||
33 | */ |
||
34 | 5 | public function getCity() |
|
38 | |||
39 | /** |
||
40 | * Retrieve the number property |
||
41 | * |
||
42 | * @return string|null |
||
43 | */ |
||
44 | 6 | public function getNumber() |
|
48 | |||
49 | /** |
||
50 | * Retrieve the sanitizedNumber property |
||
51 | * |
||
52 | * @return string|null |
||
53 | */ |
||
54 | 5 | public function getSanitizedNumber() |
|
58 | |||
59 | /** |
||
60 | * Retrieve the call property |
||
61 | * |
||
62 | * @return string|null |
||
63 | */ |
||
64 | 5 | public function getCall() |
|
68 | } |
||
69 |