1 | <?php |
||
8 | class PhoneHelper extends AbstractFormHelper |
||
9 | { |
||
10 | private $phone; |
||
11 | |||
12 | /** |
||
13 | * @param $phone |
||
14 | * @return $this |
||
15 | */ |
||
16 | 3 | public function set($phone) |
|
22 | |||
23 | /** |
||
24 | * @return $this |
||
25 | */ |
||
26 | 3 | public function removePhoneSpecifications() |
|
33 | |||
34 | /** |
||
35 | * @param $length |
||
36 | * @return $this |
||
37 | */ |
||
38 | 3 | public function formatPhoneLength($length = 10) |
|
51 | |||
52 | /** |
||
53 | * @return mixed |
||
54 | */ |
||
55 | 3 | public function get() |
|
59 | |||
60 | } |
||
61 |