2017-07-19 20:49:41 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
|
2017-10-25 22:33:28 -05:00
|
|
|
use Illuminate\Support\Collection;
|
|
|
|
|
2017-10-06 23:57:53 -05:00
|
|
|
interface EggVariableRepositoryInterface extends RepositoryInterface
|
2017-07-19 20:49:41 -05:00
|
|
|
{
|
2017-10-25 22:33:28 -05: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-19 20:49:41 -05:00
|
|
|
}
|