misc_pterodactyl-panel/app/Contracts/Repository/NestRepositoryInterface.php
2021-10-30 13:41:38 -07:00

15 lines
376 B
PHP

<?php
namespace Pterodactyl\Contracts\Repository;
use Pterodactyl\Models\Nest;
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): Nest;
}