2017-07-20 03:49:41 +02:00
|
|
|
<?php
|
2017-09-26 04:43:01 +02:00
|
|
|
/**
|
2017-07-20 03:49:41 +02:00
|
|
|
* Pterodactyl - Panel
|
|
|
|
* Copyright (c) 2015 - 2017 Dane Everitt <dane@daneeveritt.com>.
|
|
|
|
*
|
2017-09-26 04:43:01 +02:00
|
|
|
* This software is licensed under the terms of the MIT license.
|
|
|
|
* https://opensource.org/licenses/MIT
|
2017-07-20 03:49:41 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
2017-10-07 06:57:53 +02:00
|
|
|
use Pterodactyl\Models\EggVariable;
|
|
|
|
use Pterodactyl\Contracts\Repository\EggVariableRepositoryInterface;
|
2017-07-20 03:49:41 +02:00
|
|
|
|
2017-10-07 06:57:53 +02:00
|
|
|
class EggVariableRepository extends EloquentRepository implements EggVariableRepositoryInterface
|
2017-07-20 03:49:41 +02:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* {@inheritdoc}
|
|
|
|
*/
|
|
|
|
public function model()
|
|
|
|
{
|
2017-10-07 06:57:53 +02:00
|
|
|
return EggVariable::class;
|
2017-07-20 03:49:41 +02:00
|
|
|
}
|
|
|
|
}
|