| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class FormlessDates extends Dateable |
||
| 11 | { |
||
| 12 | private Carbon $start; |
||
| 13 | |||
| 14 | private Carbon $end; |
||
| 15 | |||
| 16 | public function __construct(Carbon $start, Carbon $end) |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getStartDate(): Carbon |
||
| 23 | { |
||
| 24 | return $this->start; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getEndDate(): Carbon |
||
| 30 | } |
||
| 31 | } |
||
| 32 |