@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | */ |
162 | 162 | private array $countries; |
163 | 163 | |
164 | - public function __construct(array|string $countries = []) |
|
164 | + public function __construct(array | string $countries = [ ]) |
|
165 | 165 | { |
166 | 166 | $this->setCountries(func_get_args()); |
167 | 167 | } |
@@ -193,19 +193,19 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @return void |
195 | 195 | */ |
196 | - private function setCountries(array|null $countries) |
|
196 | + private function setCountries(array | null $countries) |
|
197 | 197 | { |
198 | 198 | if (empty($countries)) { |
199 | - $this->countries = []; |
|
199 | + $this->countries = [ ]; |
|
200 | 200 | return; |
201 | 201 | } |
202 | 202 | |
203 | - if (is_array($countries[0])) { |
|
204 | - $countries = $countries[0]; |
|
203 | + if (is_array($countries[ 0 ])) { |
|
204 | + $countries = $countries[ 0 ]; |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | foreach ($countries as $country) { |
208 | - $this->countries[] = $country; |
|
208 | + $this->countries[ ] = $country; |
|
209 | 209 | } |
210 | 210 | } |
211 | 211 | |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | */ |
218 | 218 | private function isIbanValid(string $iban) |
219 | 219 | { |
220 | - if (! $this->checkIbanFormat($iban)) { |
|
220 | + if ( ! $this->checkIbanFormat($iban)) { |
|
221 | 221 | return false; |
222 | 222 | } |
223 | 223 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | private function isCountryValid(string $country, string $ibanCountryCode) |
318 | 318 | { |
319 | 319 | return ! empty($country) |
320 | - && isset($this->ibanLengthByCountry[$country]) |
|
320 | + && isset($this->ibanLengthByCountry[ $country ]) |
|
321 | 321 | && $ibanCountryCode === $country; |
322 | 322 | } |
323 | 323 | |
@@ -328,7 +328,7 @@ discard block |
||
328 | 328 | */ |
329 | 329 | private function isIbanLengthValid(string $iban, string $ibanCountryCode) |
330 | 330 | { |
331 | - return strlen($iban) === $this->ibanLengthByCountry[$ibanCountryCode]; |
|
331 | + return strlen($iban) === $this->ibanLengthByCountry[ $ibanCountryCode ]; |
|
332 | 332 | } |
333 | 333 | } |
334 | 334 |