| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 8 | final class Billpay |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var int|null |
||
| 12 | * @SerializedName("DelayInDays") |
||
| 13 | */ |
||
| 14 | private $delayInDays; |
||
| 15 | |||
| 16 | public function getDelayInDays(): ?int |
||
| 17 | { |
||
| 18 | return $this->delayInDays; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function setDelayInDays(?int $delayInDays): self |
||
| 26 | } |
||
| 27 | } |
||
| 28 |