New-Thanasoft/thanasoft-back/app/Repositories/ClientRepositoryInterface.php
2026-05-11 13:30:24 +03:00

15 lines
330 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;
public function getStatistics(): array;
}