Added vendor/ directory for Composer's installed files
This commit is contained in:
19
vendor/illuminate/contracts/Pagination/Presenter.php
vendored
Executable file
19
vendor/illuminate/contracts/Pagination/Presenter.php
vendored
Executable file
@ -0,0 +1,19 @@
|
||||
<?php namespace Illuminate\Contracts\Pagination;
|
||||
|
||||
interface Presenter {
|
||||
|
||||
/**
|
||||
* Render the given paginator.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function render();
|
||||
|
||||
/**
|
||||
* Determine if the underlying paginator being presented has pages to show.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function hasPages();
|
||||
|
||||
}
|
Reference in New Issue
Block a user