2017-07-20 01:49:41 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
|
2017-10-26 03:33:28 +00:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
2017-10-07 04:57:53 +00:00
|
|
|
interface EggVariableRepositoryInterface extends RepositoryInterface
|
2017-07-20 01:49:41 +00:00
|
|
|
{
|
2017-10-26 03:33:28 +00:00
|
|
|
/**
|
|
|
|
* 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;
|
2017-07-20 01:49:41 +00:00
|
|
|
}
|