server/src/app/Repositories/DocumentRepository.php
changeset 125 e550b10fe3ca
parent 22 a50cbd7d702f
child 168 17f10b56c079
equal deleted inserted replaced
124:93234b0b12f3 125:e550b10fe3ca
    18      * @param  string  $pageName
    18      * @param  string  $pageName
    19      * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
    19      * @return \Illuminate\Contracts\Pagination\LengthAwarePaginator
    20      */
    20      */
    21     public function paginateAll($perPage = 15, $pageName = 'page', $page = null);
    21     public function paginateAll($perPage = 15, $pageName = 'page', $page = null);
    22 
    22 
       
    23     /**
       
    24      * Resolve lexvo id for all documents in the list
       
    25      * this allow to optimise the call of lexvo repository
       
    26      */
       
    27     public function resolveLexvo(Array $docList);
       
    28 
    23     public function getCount();
    29     public function getCount();
    24 }
    30 }