Fix allocation behavior, closes #712

This commit is contained in:
Dane Everitt 2018-01-08 22:12:19 -06:00
parent 036bea2b94
commit 22511c8e24
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
5 changed files with 34 additions and 5 deletions

View file

@ -22,4 +22,12 @@ interface AllocationRepositoryInterface extends RepositoryInterface
* @return \Illuminate\Support\Collection
*/
public function getAllocationsForNode(int $node): Collection;
/**
* Return all of the unique IPs that exist for a given node.
*
* @param int $node
* @return \Illuminate\Support\Collection
*/
public function getUniqueAllocationIpsForNode(int $node): Collection;
}