misc_pterodactyl-panel/app/Contracts/Repository/NestRepositoryInterface.php

16 lines
376 B
PHP
Raw Normal View History

<?php
namespace Pterodactyl\Contracts\Repository;
use Pterodactyl\Models\Nest;
2017-10-03 03:51:13 +00:00
interface NestRepositoryInterface extends RepositoryInterface
{
/**
* Return a nest or all nests with their associated eggs and variables.
*
2017-10-04 04:31:04 +00:00
* @throws \Pterodactyl\Exceptions\Repository\RecordNotFoundException
*/
public function getWithEggs(int $id = null): Nest;
}