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