1 | <?php |
||
7 | class HoursWorkedSummary |
||
8 | { |
||
9 | private $startDate; |
||
10 | private $endDate; |
||
11 | private $hours; |
||
12 | |||
13 | public function __construct(DateTimeInterface $start, DateTimeInterface $end, $hours) |
||
19 | |||
20 | public function getStartDate() |
||
24 | |||
25 | public function getEndDate() |
||
29 | |||
30 | public function getTotalHours() |
||
34 | } |
||
35 |