1<?php 2 3namespace Pterodactyl\Contracts\Repository; 4 5use Illuminate\Support\Collection; 6 7interface DatabaseHostRepositoryInterface extends RepositoryInterface 8{ 9 /** 10 * Return database hosts with a count of databases and the node 11 * information for which it is attached. 12 */ 13 public function getWithViewDetails(): Collection; 14} 15 16