Conditions | 5 |
Paths | 2 |
Total Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 6.6 |
Changes | 0 |
1 | <?php |
||
60 | public function phone( |
||
61 | string $phone, |
||
62 | string $country = 'AUTO', |
||
63 | int $format = Phone\Phone::FORMAT_INTERNATIONAL |
||
64 | ) : string { |
||
65 | 1 | $country = strtoupper($country); |
|
66 | |||
67 | 1 | if ((strlen($country) !== 2 || !ctype_alpha($country) || !ctype_upper($country)) && $country !== 'AUTO') { |
|
68 | $format = $country; |
||
69 | $country = 'AUTO'; |
||
70 | } |
||
71 | |||
72 | 1 | return $this->phone->format($phone, $country, $format); |
|
73 | } |
||
74 | |||
83 |