New-Thanasoft/thanasoft-back/app/Repositories/FournisseurRepositoryInterface.php
2025-10-28 18:03:44 +03:00

13 lines
290 B
PHP

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