Skip to content

Commit 98b85a5

Browse files
committed
Remove support for the Dutch matchExact API
Use the Validate API instead
1 parent d86f915 commit 98b85a5

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/PostcodeNl/Api/Client.php

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -141,22 +141,6 @@ public function dutchAddressByPostcode(string $postcode, int $houseNumber, ?stri
141141
return $this->_performApiCall(implode('/', $urlParts), null);
142142
}
143143

144-
/**
145-
* @see https://developer.postcode.eu/documentation/nl/v1/Address/matchExact
146-
*/
147-
public function dutchAddressExactMatch(string $city, string $street, int $houseNumber, string $houseNumberAddition = ''): array
148-
{
149-
$urlParts = [
150-
'nl/v1/addresses/exact',
151-
rawurlencode($city),
152-
rawurlencode($street),
153-
$houseNumber,
154-
rawurlencode($houseNumberAddition),
155-
];
156-
157-
return $this->_performApiCall(implode('/', $urlParts), null);
158-
}
159-
160144
/**
161145
* @see https://developer.postcode.eu/documentation/nl/v1/Address/viewByRd
162146
*/

0 commit comments

Comments
 (0)