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

15 lines
337 B
PHP

<?php
namespace App\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;
}