author | ymh <ymh.work@gmail.com> |
Tue, 01 Dec 2015 13:57:41 +0100 | |
changeset 21 | 01e7e6a17317 |
parent 4 | f55970e41793 |
child 22 | a50cbd7d702f |
permissions | -rw-r--r-- |
<?php namespace CorpusParole\Repositories; use CorpusParole\Models\Document; interface DocumentRepository { public function all(); public function get($id); public function save(Document $doc); /** * Paginate all document as a paginator. * * @param int $perPage * @param string $pageName * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator */ public function paginateAll($perPage = 15, $pageName = 'page'); public function getCount(); }