From f33483e804a168801a8dcb4a47b8a82163d13bf3 Mon Sep 17 00:00:00 2001 From: Jochem Gravendeel <119667571+GravendeelJochem@users.noreply.github.com> Date: Fri, 15 Nov 2024 10:18:08 +0100 Subject: [PATCH] feat: Allow saturday delivery for DHLForYou (#510) --- 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[] */