allow sender country is null

Cette révision appartient à :
Daniel Seifert 2022-07-14 16:04:26 +02:00
Parent 53c4561af5
révision 407ac49a17
Signé par: DanielS
ID de la clé GPG: 8A7C4C6ED1915C6F
1 fichiers modifiés avec 1 ajouts et 1 suppressions

Voir le fichier

@ -58,7 +58,7 @@ class Configuration
$country = trim(Registry::getConfig()->getConfigParam('d3linkmobility_smsSenderCountry'));
$country = strlen($country) ? strtoupper($country) : null;
Assert::that($country)->null() || Assert::that($country)->string()->length(2);
Assert::that($country)->nullOr() || Assert::that($country)->string()->length(2);
return $country;
}