Files
app
assets
public
vendor
alexgarrett
composer
danielstjules
doctrine
hassankhan
illuminate
container
contracts
Auth
Bus
Cache
Config
Console
Container
Cookie
Database
Debug
Encryption
Events
Filesystem
Foundation
Hashing
Http
Logging
Mail
Pagination
LengthAwarePaginator.php
Paginator.php
Presenter.php
Pipeline
Queue
Redis
Routing
Support
Validation
View
composer.json
database
support
nesbot
slim
symfony
twig
autoload.php
.gitignore
README.md
composer.json
composer.lock
composer.phar
mode.php
website/vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php

20 lines
332 B
PHP
Executable File

<?php namespace Illuminate\Contracts\Pagination;
interface LengthAwarePaginator extends Paginator {
/**
* Determine the total number of items in the data store.
*
* @return int
*/
public function total();
/**
* Get the page number of the last available page.
*
* @return int
*/
public function lastPage();
}