From f04989399d3fb19ec280c1c3717c74d73e568369 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0pa=C4=8Dek?= Date: Fri, 11 Sep 2020 15:25:24 +0200 Subject: [PATCH] Add missing @throws tags --- src/VatCalculator.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/VatCalculator.php b/src/VatCalculator.php index 2417ea3..c511c6b 100644 --- a/src/VatCalculator.php +++ b/src/VatCalculator.php @@ -128,6 +128,7 @@ public function getTaxRateForLocation(string $countryCode, ?string $postalCode, * @param string $vatNumber * @return bool * @throws VatCheckUnavailableException + * @throws UnsupportedCountryException */ public function isValidVatNumber(string $vatNumber): bool { @@ -140,6 +141,7 @@ public function isValidVatNumber(string $vatNumber): bool * @param string|null $requesterVatNumber * @return VatDetails * @throws VatCheckUnavailableException + * @throws UnsupportedCountryException */ public function getVatDetails(string $vatNumber, ?string $requesterVatNumber = null): VatDetails {