count = $count; } /** * Returns an array of items for a page. * * @param int $offset Page offset * @param int $itemCountPerPage Number of items per page * @return array */ public function getItems($offset, $itemCountPerPage) { if ($offset >= $this->count()) { return array(); } $remainItemCount = $this->count() - $offset; $currentItemCount = $remainItemCount > $itemCountPerPage ? $itemCountPerPage : $remainItemCount; return array_fill(0, $currentItemCount, null); } /** * Returns the total number of rows in the array. * * @return int */ public function count() { return $this->count; } }