cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
30 lines
925 B
PHP
30 lines
925 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Contracts\Repository;
|
|
|
|
use Pterodactyl\Models\Nest;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
interface NestRepositoryInterface extends RepositoryInterface
|
|
{
|
|
/**
|
|
* Return a nest or all nests with their associated eggs and variables.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getWithEggs(int $id = null): Collection|Nest;
|
|
|
|
/**
|
|
* Return a nest or all nests and the count of eggs and servers for that nest.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getWithCounts(int $id = null): Collection|Nest;
|
|
|
|
/**
|
|
* Return a nest along with its associated eggs and the servers relation on those eggs.
|
|
*
|
|
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
|
|
*/
|
|
public function getWithEggServers(int $id): Nest;
|
|
}
|