cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
14 lines
389 B
PHP
14 lines
389 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface EggVariableRepositoryInterface extends RepositoryInterface
|
|
{
|
|
/**
|
|
* Return editable variables for a given egg. Editable variables must be set to
|
|
* user viewable in order to be picked up by this function.
|
|
*/
|
|
public function getEditableVariables(int $egg): Collection;
|
|
}
|