2017-07-19 20:49:41 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
|
|
|
use Pterodactyl\Models\ServerVariable;
|
|
|
|
use Pterodactyl\Contracts\Repository\ServerVariableRepositoryInterface;
|
|
|
|
|
|
|
|
class ServerVariableRepository extends EloquentRepository implements ServerVariableRepositoryInterface
|
|
|
|
{
|
|
|
|
/**
|
2018-01-04 22:49:50 -06:00
|
|
|
* Return the model backing this repository.
|
2017-07-19 20:49:41 -05:00
|
|
|
*/
|
2022-10-14 10:59:20 -06:00
|
|
|
public function model(): string
|
2017-07-19 20:49:41 -05:00
|
|
|
{
|
|
|
|
return ServerVariable::class;
|
|
|
|
}
|
|
|
|
}
|