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