apply PSR-12 rules
This commit is contained in:
parent
95b95d1d8b
commit
b22da1bd4a
@ -53,7 +53,7 @@ class Recipient extends StringValueObject
|
|||||||
$phoneUtil = $this->getPhoneNumberUtil();
|
$phoneUtil = $this->getPhoneNumberUtil();
|
||||||
|
|
||||||
$phoneNumber = $phoneUtil->parse($number, strtoupper($iso2CountryCode));
|
$phoneNumber = $phoneUtil->parse($number, strtoupper($iso2CountryCode));
|
||||||
$number = $phoneUtil->format( $phoneNumber, PhoneNumberFormat::E164 );
|
$number = $phoneUtil->format($phoneNumber, PhoneNumberFormat::E164);
|
||||||
|
|
||||||
if (false === $phoneUtil->isValidNumber($phoneNumber)) {
|
if (false === $phoneUtil->isValidNumber($phoneNumber)) {
|
||||||
throw new RecipientException(ExceptionMessages::INVALID_RECIPIENT_PHONE);
|
throw new RecipientException(ExceptionMessages::INVALID_RECIPIENT_PHONE);
|
||||||
@ -63,7 +63,7 @@ class Recipient extends StringValueObject
|
|||||||
$this->allowedNumberTypes
|
$this->allowedNumberTypes
|
||||||
)
|
)
|
||||||
) {
|
) {
|
||||||
throw new RecipientException( ExceptionMessages::NOT_A_MOBILE_NUMBER);
|
throw new RecipientException(ExceptionMessages::NOT_A_MOBILE_NUMBER);
|
||||||
}
|
}
|
||||||
|
|
||||||
parent::__construct($number);
|
parent::__construct($number);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user