16 lines
297 B
PHP
16 lines
297 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
use App\Models\ClientContact;
|
|
|
|
class ClientContactRepository extends BaseRepository implements ClientContactRepositoryInterface
|
|
{
|
|
public function __construct(ClientContact $model)
|
|
{
|
|
parent::__construct($model);
|
|
}
|
|
}
|