mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-30 19:43:49 +00:00
fix cs
This commit is contained in:
@@ -50,6 +50,7 @@ class ExtractPhonenumberFromPattern
|
||||
} else {
|
||||
throw new LogicException('should not match not alnum character');
|
||||
}
|
||||
|
||||
break;
|
||||
|
||||
case '0':
|
||||
@@ -57,7 +58,7 @@ class ExtractPhonenumberFromPattern
|
||||
|
||||
if (0 === $key) {
|
||||
$util = PhoneNumberUtil::getInstance();
|
||||
$phonenumber[] = '+'.$util->getCountryCodeForRegion($this->defaultCarrierCode);
|
||||
$phonenumber[] = '+' . $util->getCountryCodeForRegion($this->defaultCarrierCode);
|
||||
} else {
|
||||
$phonenumber[] = $char;
|
||||
}
|
||||
|
Reference in New Issue
Block a user