1 | <?php declare(strict_types=1); |
||
11 | class DetailedReport |
||
12 | { |
||
13 | /** |
||
14 | * @var integer |
||
15 | */ |
||
16 | private $totalGrand; |
||
17 | |||
18 | /** |
||
19 | * @var integer |
||
20 | */ |
||
21 | private $totalBillable; |
||
22 | |||
23 | /** |
||
24 | * @var integer |
||
25 | */ |
||
26 | private $totalCount; |
||
27 | |||
28 | /** |
||
29 | * @var integer |
||
30 | */ |
||
31 | private $perPage; |
||
32 | |||
33 | /** |
||
34 | * @var array |
||
35 | */ |
||
36 | private $data; |
||
37 | |||
38 | /** |
||
39 | * @return int |
||
40 | */ |
||
41 | public function getTotalGrand(): int |
||
45 | |||
46 | /** |
||
47 | * @param int $totalGrand |
||
48 | */ |
||
49 | public function setTotalGrand(int $totalGrand) |
||
53 | |||
54 | /** |
||
55 | * @return int |
||
56 | */ |
||
57 | public function getTotalBillable(): int |
||
61 | |||
62 | /** |
||
63 | * @param int $totalBillable |
||
64 | */ |
||
65 | public function setTotalBillable(int $totalBillable) |
||
69 | |||
70 | /** |
||
71 | * @return int |
||
72 | */ |
||
73 | public function getTotalCount(): int |
||
77 | |||
78 | /** |
||
79 | * @param int $totalCount |
||
80 | */ |
||
81 | public function setTotalCount(int $totalCount) |
||
85 | |||
86 | /** |
||
87 | * @return int |
||
88 | */ |
||
89 | public function getPerPage(): int |
||
93 | |||
94 | /** |
||
95 | * @param int $perPage |
||
96 | */ |
||
97 | public function setPerPage(int $perPage) |
||
101 | |||
102 | /** |
||
103 | * @return array|TimeEntry[] |
||
104 | */ |
||
105 | public function getData(): array |
||
109 | |||
110 | /** |
||
111 | * @param array $data |
||
112 | */ |
||
113 | public function setData(array $data) |
||
117 | } |
||
118 |