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