use assertion library

This commit is contained in:
Daniel Seifert 2023-02-02 00:18:09 +01:00
parent 3d0578bd9a
commit 6331080e8b
Signed by: DanielS
GPG Key ID: 6A513E13AEE66170
1 changed files with 7 additions and 1 deletions

View File

@ -16,6 +16,7 @@ declare(strict_types=1);
namespace D3\Linkmobility4OXID\Application\Model;
use Assert\Assert;
use Assert\InvalidArgumentException;
use OxidEsales\Eshop\Application\Model\Order;
use OxidEsales\Eshop\Application\Model\User;
use OxidEsales\Eshop\Core\Config;
@ -40,6 +41,7 @@ class Configuration
/**
* @return string
* @throws InvalidArgumentException
*/
public function getApiToken(): string
{
@ -62,6 +64,7 @@ class Configuration
/**
* @return string|null
* @throws InvalidArgumentException
*/
public function getSmsSenderNumber(): ?string
{
@ -75,6 +78,7 @@ class Configuration
/**
* @return string|null
* @throws InvalidArgumentException
*/
public function getSmsSenderCountry(): ?string
{
@ -86,13 +90,14 @@ class Configuration
$country = trim($country);
$country = strlen($country) ? strtoupper($country) : null;
Assert::that($country)->nullOr()->string()->length(2);
Assert::thatNullOr($country)->string()->length(2);
return $country;
}
/**
* @return string[]
* @throws InvalidArgumentException
*/
public function getOrderRecipientFields(): array
{
@ -113,6 +118,7 @@ class Configuration
/**
* @return string[]
* @throws InvalidArgumentException
*/
public function getUserRecipientFields(): array
{