7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-15 23:21:08 +02:00

20 lines
444 B
PHP

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