return Renderer::replaceMacros($tpl, ['pager' => $data]);
}
- public function renderFull(int $itemCount)
+ public function renderFull(int $itemCount): string
{
throw new \BadMethodCallException();
}
*
* $html = $pager->renderFull();
*
- * @param integer $itemCount The total number of items including those note displayed on the page
+ * @param int $itemCount The total number of items including those note displayed on the page
* @return string HTML string of the pager
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public function renderFull(int $itemCount): string
{
- $totalItemCount = max(0, intval($itemCount));
+ $totalItemCount = max(0, $itemCount);
$data = [];