Added vendor/ directory for Composer's installed files
This commit is contained in:
19
vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php
vendored
Executable file
19
vendor/illuminate/contracts/Pagination/LengthAwarePaginator.php
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
<?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();
|
||||
|
||||
}
|
Reference in New Issue
Block a user