Spaces:
No application file
No application file
File size: 506 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
<?php
declare(strict_types=1);
namespace Mautic\CoreBundle\Helper;
interface PageHelperInterface
{
public function getLimit(): int;
/**
* The number of entities can be less then the current page so calculate the last page.
*/
public function countPage(int $count): int;
public function getStart(): int;
/**
* Remember what page currently on so that we can return here after form submission/cancellation.
*/
public function rememberPage(int $page): void;
}
|