pelican-panel-mirror/app/Repositories/Eloquent/ServerVariableRepository.php
2024-03-12 22:39:16 -04:00

18 lines
399 B
PHP

<?php
namespace App\Repositories\Eloquent;
use App\Models\ServerVariable;
use App\Contracts\Repository\ServerVariableRepositoryInterface;
class ServerVariableRepository extends EloquentRepository implements ServerVariableRepositoryInterface
{
/**
* Return the model backing this repository.
*/
public function model(): string
{
return ServerVariable::class;
}
}