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