diff --git a/src/Dispatching/Entities/DeliveryTime.php b/src/Dispatching/Entities/DeliveryTime.php index 4b981ae..35910bf 100644 --- a/src/Dispatching/Entities/DeliveryTime.php +++ b/src/Dispatching/Entities/DeliveryTime.php @@ -13,11 +13,11 @@ final class DeliveryTime implements Arrayable public function getMin(): int { - return $this->get('min'); + return $this->get('min-days'); } public function getMax(): int { - return $this->get('max'); + return $this->get('max-days'); } }