Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/app/Contracts/Repository/DatabaseHostRepositoryInterface.php
10279 views
1
<?php
2
3
namespace Pterodactyl\Contracts\Repository;
4
5
use Illuminate\Support\Collection;
6
7
interface 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