@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | public function setCourierServicePayer(string $courierServicePayer): void |
| 72 | 72 | { |
| 73 | - if (! $this->isValidPayer($courierServicePayer)) { |
|
| 73 | + if (!$this->isValidPayer($courierServicePayer)) { |
|
| 74 | 74 | throw new InvalidArgumentException(); |
| 75 | 75 | } |
| 76 | 76 | $this->courierServicePayer = $courierServicePayer; |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | public function setDeclaredValuePayer(string $declaredValuePayer): void |
| 85 | 85 | { |
| 86 | - if (! $this->isValidPayer($declaredValuePayer)) { |
|
| 86 | + if (!$this->isValidPayer($declaredValuePayer)) { |
|
| 87 | 87 | throw new InvalidArgumentException(); |
| 88 | 88 | } |
| 89 | 89 | $this->declaredValuePayer = $declaredValuePayer; |
@@ -96,7 +96,7 @@ discard block |
||
| 96 | 96 | |
| 97 | 97 | public function setPackagePayer(string $packagePayer): void |
| 98 | 98 | { |
| 99 | - if (! $this->isValidPayer($packagePayer)) { |
|
| 99 | + if (!$this->isValidPayer($packagePayer)) { |
|
| 100 | 100 | throw new InvalidArgumentException(); |
| 101 | 101 | } |
| 102 | 102 | $this->packagePayer = $packagePayer; |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | |
| 46 | 46 | public function setCode(int $code): self |
| 47 | 47 | { |
| 48 | - if (! \in_array($code, self::CODES)) { |
|
| 48 | + if (!\in_array($code, self::CODES)) { |
|
| 49 | 49 | throw new \InvalidArgumentException(); |
| 50 | 50 | } |
| 51 | 51 | $this->code = $code; |