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