Replace server variable repository

This commit is contained in:
Lance Pioch 2022-10-22 20:13:42 -04:00
parent 860b2d890b
commit 7d8eba1595
5 changed files with 6 additions and 36 deletions

View file

@ -1,17 +0,0 @@
<?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.
*/
public function model(): string
{
return ServerVariable::class;
}
}