New-Thanasoft/thanasoft-back/app/Repositories/ClientRepositoryInterface.php
2025-10-09 18:25:02 +03:00

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;
}