nooktheme/app/Contracts/Repository/DatabaseHostRepositoryInterface.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

15 lines
345 B
PHP

<?php
namespace Pterodactyl\Contracts\Repository;
use Illuminate\Support\Collection;
interface DatabaseHostRepositoryInterface extends RepositoryInterface
{
/**
* Return database hosts with a count of databases and the node
* information for which it is attached.
*/
public function getWithViewDetails(): Collection;
}