13 lines
285 B
PHP
13 lines
285 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
use Illuminate\Contracts\Pagination\LengthAwarePaginator;
|
|
|
|
interface ClientRepositoryInterface extends BaseRepositoryInterface
|
|
{
|
|
public function paginate(int $perPage = 15, array $filters = []): LengthAwarePaginator;
|
|
}
|