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