芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/kwesioben.com/paymoney/vendor/league/fractal/src/Pagination/PaginatorInterface.php
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace League\Fractal\Pagination; /** * A common interface for paginators to use * * @author Marc Addeo
*/ interface PaginatorInterface { /** * Get the current page. */ public function getCurrentPage(): int; /** * Get the last page. */ public function getLastPage(): int; /** * Get the total. */ public function getTotal(): int; /** * Get the count. */ public function getCount(): int; /** * Get the number per page. */ public function getPerPage(): int; /** * Get the url for the given page. */ public function getUrl(int $page): string; }