1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-16 13:44:12 +02:00

[ticket/16955] Fix another batch of docblocks

PHPBB3-16955
This commit is contained in:
Marc Alexander
2022-12-26 14:50:57 +01:00
parent 96911b7403
commit 5b23dcd606
25 changed files with 93 additions and 75 deletions

View File

@@ -285,11 +285,12 @@ class pagination
*
* @param int $per_page the number of items, posts, etc. per page
* @param int $start the item which should be considered currently active, used to determine the page we're on
*
* @return int Current page number
*/
public function get_on_page($per_page, $start)
public function get_on_page(int $per_page, int $start): int
{
return floor((int) $start / (int) $per_page) + 1;
return (int) floor($start / $per_page) + 1;
}
/**
@@ -318,7 +319,7 @@ class pagination
{
if ($start < 0 || $start >= $num_items)
{
return ($start < 0 || $num_items <= 0) ? 0 : floor(($num_items - 1) / $per_page) * $per_page;
return ($start < 0 || $num_items <= 0) ? 0 : (int) floor(($num_items - 1) / $per_page) * $per_page;
}
return $start;