@@ -530,7 +530,7 @@ discard block |
||
| 530 | 530 | } |
| 531 | 531 | |
| 532 | 532 | /** |
| 533 | - * @param mixed $countryCode |
|
| 533 | + * @param string $countryCode |
|
| 534 | 534 | */ |
| 535 | 535 | public function setCountryCode($countryCode) |
| 536 | 536 | { |
@@ -546,7 +546,7 @@ discard block |
||
| 546 | 546 | } |
| 547 | 547 | |
| 548 | 548 | /** |
| 549 | - * @param mixed $postalCode |
|
| 549 | + * @param string $postalCode |
|
| 550 | 550 | */ |
| 551 | 551 | public function setPostalCode($postalCode) |
| 552 | 552 | { |
@@ -651,7 +651,7 @@ discard block |
||
| 651 | 651 | } |
| 652 | 652 | |
| 653 | 653 | /** |
| 654 | - * @param $vatNumber |
|
| 654 | + * @param string $vatNumber |
|
| 655 | 655 | * @param $requestorVatNumber |
| 656 | 656 | * |
| 657 | 657 | * @throws VATCheckUnavailableException |
@@ -402,10 +402,10 @@ discard block |
||
| 402 | 402 | */ |
| 403 | 403 | private function getClientIP() |
| 404 | 404 | { |
| 405 | - if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR']) { |
|
| 406 | - $clientIpAddress = $_SERVER['HTTP_X_FORWARDED_FOR']; |
|
| 407 | - } elseif (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR']) { |
|
| 408 | - $clientIpAddress = $_SERVER['REMOTE_ADDR']; |
|
| 405 | + if (isset($_SERVER[ 'HTTP_X_FORWARDED_FOR' ]) && $_SERVER[ 'HTTP_X_FORWARDED_FOR' ]) { |
|
| 406 | + $clientIpAddress = $_SERVER[ 'HTTP_X_FORWARDED_FOR' ]; |
|
| 407 | + } elseif (isset($_SERVER[ 'REMOTE_ADDR' ]) && $_SERVER[ 'REMOTE_ADDR' ]) { |
|
| 408 | + $clientIpAddress = $_SERVER[ 'REMOTE_ADDR' ]; |
|
| 409 | 409 | } else { |
| 410 | 410 | $clientIpAddress = ''; |
| 411 | 411 | } |
@@ -425,11 +425,11 @@ discard block |
||
| 425 | 425 | $ip = $this->getClientIP(); |
| 426 | 426 | $url = self::GEOCODE_SERVICE_URL.$ip; |
| 427 | 427 | $result = file_get_contents($url); |
| 428 | - switch ($result[0]) { |
|
| 428 | + switch ($result[ 0 ]) { |
|
| 429 | 429 | case '1': |
| 430 | 430 | $data = explode(';', $result); |
| 431 | 431 | |
| 432 | - return $data[1]; |
|
| 432 | + return $data[ 1 ]; |
|
| 433 | 433 | break; |
| 434 | 434 | default: |
| 435 | 435 | return false; |
@@ -447,7 +447,7 @@ discard block |
||
| 447 | 447 | { |
| 448 | 448 | $taxKey = 'vat_calculator.rules.'.strtoupper($countryCode); |
| 449 | 449 | |
| 450 | - return isset($this->taxRules[strtoupper($countryCode)]) || (isset($this->config) && $this->config->has($taxKey)); |
|
| 450 | + return isset($this->taxRules[ strtoupper($countryCode) ]) || (isset($this->config) && $this->config->has($taxKey)); |
|
| 451 | 451 | } |
| 452 | 452 | |
| 453 | 453 | /** |
@@ -622,24 +622,24 @@ discard block |
||
| 622 | 622 | return $this->config->get($taxKey, 0); |
| 623 | 623 | } |
| 624 | 624 | |
| 625 | - if (isset($this->postalCodeExceptions[$countryCode]) && $postalCode !== null) { |
|
| 626 | - foreach ($this->postalCodeExceptions[$countryCode] as $postalCodeException) { |
|
| 627 | - if (!preg_match($postalCodeException['postalCode'], $postalCode)) { |
|
| 625 | + if (isset($this->postalCodeExceptions[ $countryCode ]) && $postalCode !== null) { |
|
| 626 | + foreach ($this->postalCodeExceptions[ $countryCode ] as $postalCodeException) { |
|
| 627 | + if (!preg_match($postalCodeException[ 'postalCode' ], $postalCode)) { |
|
| 628 | 628 | continue; |
| 629 | 629 | } |
| 630 | - if (isset($postalCodeException['name'])) { |
|
| 631 | - return $this->taxRules[$postalCodeException['code']]['exceptions'][$postalCodeException['name']]; |
|
| 630 | + if (isset($postalCodeException[ 'name' ])) { |
|
| 631 | + return $this->taxRules[ $postalCodeException[ 'code' ] ][ 'exceptions' ][ $postalCodeException[ 'name' ] ]; |
|
| 632 | 632 | } |
| 633 | 633 | |
| 634 | - return $this->taxRules[$postalCodeException['code']]['rate']; |
|
| 634 | + return $this->taxRules[ $postalCodeException[ 'code' ] ][ 'rate' ]; |
|
| 635 | 635 | } |
| 636 | 636 | } |
| 637 | 637 | |
| 638 | 638 | if ($type !== null) { |
| 639 | - return isset($this->taxRules[strtoupper($countryCode)]['rates'][$type]) ? $this->taxRules[strtoupper($countryCode)]['rates'][$type] : 0; |
|
| 639 | + return isset($this->taxRules[ strtoupper($countryCode) ][ 'rates' ][ $type ]) ? $this->taxRules[ strtoupper($countryCode) ][ 'rates' ][ $type ] : 0; |
|
| 640 | 640 | } |
| 641 | 641 | |
| 642 | - return isset($this->taxRules[strtoupper($countryCode)]['rate']) ? $this->taxRules[strtoupper($countryCode)]['rate'] : 0; |
|
| 642 | + return isset($this->taxRules[ strtoupper($countryCode) ][ 'rate' ]) ? $this->taxRules[ strtoupper($countryCode) ][ 'rate' ] : 0; |
|
| 643 | 643 | } |
| 644 | 644 | |
| 645 | 645 | /** |
@@ -679,11 +679,11 @@ discard block |
||
| 679 | 679 | */ |
| 680 | 680 | public function getVATDetails($vatNumber, $requestorVat = null) |
| 681 | 681 | { |
| 682 | - $vatNumber = str_replace([' ', '-', '.', ','], '', trim($vatNumber)); |
|
| 682 | + $vatNumber = str_replace([ ' ', '-', '.', ',' ], '', trim($vatNumber)); |
|
| 683 | 683 | $countryCode = substr($vatNumber, 0, 2); |
| 684 | 684 | $vatNumber = substr($vatNumber, 2); |
| 685 | 685 | |
| 686 | - if(!$requestorVat) { |
|
| 686 | + if (!$requestorVat) { |
|
| 687 | 687 | $requestorVat = $this->config->get('vat_calculator.business_vat_number'); |
| 688 | 688 | } |
| 689 | 689 | |