for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace LauLamanApps\eCurring\Resource;
use LauLamanApps\eCurring\Resource\Curser\Pagination;
final class CustomerCollection extends Cursor
{
protected function getPageData(int $pageNumber, int $itemsPerPage): Cursor
return $this->client->getCustomers(new Pagination($itemsPerPage, $pageNumber));
}