11 lines
190 B
PHP
11 lines
190 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
interface ClientRepositoryInterface extends BaseRepositoryInterface
|
|
{
|
|
// Add Client-specific methods here later if needed
|
|
}
|