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