| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | final class DeliveryTime |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @JMS\SerializedName("min-days") |
||
| 13 | * @JMS\Type("int") |
||
| 14 | * @var int |
||
| 15 | */ |
||
| 16 | private $min; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @JMS\SerializedName("max-days") |
||
| 20 | * @JMS\Type("int") |
||
| 21 | * @var int |
||
| 22 | */ |
||
| 23 | private $max; |
||
| 24 | |||
| 25 | public function getMin(): int |
||
| 26 | { |
||
| 27 | return $this->min; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getMax(): int |
||
| 33 | } |
||
| 34 | } |
||
| 35 |