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