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