From 90e394c0b8c68d3f71f54929fd9404423fafbe2f Mon Sep 17 00:00:00 2001 From: jochemgravendeel Date: Thu, 14 Nov 2024 13:55:58 +0100 Subject: [PATCH] feat: Allow saturday delivery for DHLForYou --- src/Model/Consignment/DHLForYouConsignment.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/Model/Consignment/DHLForYouConsignment.php b/src/Model/Consignment/DHLForYouConsignment.php index 2355f4ca..9f09bd97 100644 --- a/src/Model/Consignment/DHLForYouConsignment.php +++ b/src/Model/Consignment/DHLForYouConsignment.php @@ -42,6 +42,13 @@ public function getAllowedPackageTypes(): array ]; } + public function getAllowedExtraOptions(): array + { + return [ + self::EXTRA_OPTION_DELIVERY_SATURDAY, + ]; + } + /** * @return string[] */