Skip to content

Commit

Permalink
Фик получения сроков доставки
Browse files Browse the repository at this point in the history
  • Loading branch information
jhaoda committed Oct 17, 2019
1 parent 818dbb0 commit e9411df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Dispatching/Entities/DeliveryTime.php
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

0 comments on commit e9411df

Please sign in to comment.