@@ -215,7 +215,7 @@ |
||
215 | 215 | $total = $paginationData['totalCount']; |
216 | 216 | |
217 | 217 | if ($total > 0 && $currentPage <= $pageCount) { |
218 | - $from = (($currentPage -1) * $paginationData['numItemsPerPage']) + 1; |
|
218 | + $from = (($currentPage - 1) * $paginationData['numItemsPerPage']) + 1; |
|
219 | 219 | $to = $currentPage * $paginationData['numItemsPerPage'] > $total |
220 | 220 | ? $total |
221 | 221 | : $currentPage * $paginationData['numItemsPerPage'] |
@@ -175,7 +175,7 @@ |
||
175 | 175 | /*************** Methods ***************/ |
176 | 176 | /***** Constructor *****/ |
177 | 177 | /** |
178 | - * @return void |
|
178 | + * @return ProfileEntity |
|
179 | 179 | */ |
180 | 180 | public function __construct() |
181 | 181 | { |
@@ -251,7 +251,7 @@ |
||
251 | 251 | |
252 | 252 | /*** Birthdate ***/ |
253 | 253 | /** |
254 | - * @return string |
|
254 | + * @return \DateTime |
|
255 | 255 | */ |
256 | 256 | public function getBirthdate() |
257 | 257 | { |