11 lines
198 B
PHP
11 lines
198 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
interface ContactRepositoryInterface extends BaseRepositoryInterface
|
|
{
|
|
function paginate(int $perPage = 15, array $filters = []);
|
|
}
|