From e454e1361b0c9348fcd63fd8ddf6a961c9a1f459 Mon Sep 17 00:00:00 2001 From: Joeri van Veen Date: Mon, 4 Dec 2023 11:15:03 +0100 Subject: [PATCH] fix: correct dpd shipment options (#464) --- src/Model/Consignment/DPDConsignment.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/Model/Consignment/DPDConsignment.php b/src/Model/Consignment/DPDConsignment.php index 8f4b4116..dc7308a1 100644 --- a/src/Model/Consignment/DPDConsignment.php +++ b/src/Model/Consignment/DPDConsignment.php @@ -75,24 +75,4 @@ public function getLocalCountryCode(): string { return self::CC_BE; } - - /** - * @return string[] - */ - public function getAllowedExtraOptions(): array - { - return [ - self::EXTRA_OPTION_MULTI_COLLO, - ]; - } - - /** - * @return string[] - */ - public function getAllowedShipmentOptions(): array - { - return [ - self::SHIPMENT_OPTION_SIGNATURE, - ]; - } }