Conditions | 5 |
Paths | 3 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 5 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | 1 | public static function toIntlFormat($msisdn, $countryCode = '256', $prefix = '+') |
|
17 | { |
||
18 | 1 | $msisdn = preg_replace("/[^{$prefix}0-9]/", '', $msisdn); |
|
19 | |||
20 | 1 | if ($prefix && 0 === strpos($msisdn, $prefix)) { |
|
21 | 1 | return $msisdn; |
|
22 | } |
||
23 | |||
24 | 1 | if ($countryCode && 0 === strpos($msisdn, '0')) { |
|
25 | 1 | $msisdn = preg_replace('/^0/', $countryCode, $msisdn, 1); |
|
26 | } |
||
27 | |||
28 | 1 | return "{$prefix}{$msisdn}"; |
|
29 | } |
||
31 |