for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ReenExeCubeTime\LightPaginator;
class Core
{
public function getOffset($currentPage, $limit)
return ($currentPage - 1) * $limit;
}
public function getPageCount($count, $limit)
return (int)ceil($count / $limit);