pelican-panel-mirror/app/Contracts/Repository/NestRepositoryInterface.php
2024-03-12 22:39:16 -04:00

31 lines
885 B
PHP

<?php
namespace App\Contracts\Repository;
use App\Models\Nest;
use Illuminate\Database\Eloquent\Collection;
interface NestRepositoryInterface extends RepositoryInterface
{
/**
* Return a nest or all nests with their associated eggs and variables.
*
* @throws \App\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 \App\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 \App\Exceptions\Repository\RecordNotFoundException
*/
public function getWithEggServers(int $id): Nest;
}