2017-07-19 20:49:41 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
|
2017-08-05 17:26:30 -05:00
|
|
|
use Pterodactyl\Models\Node;
|
2017-07-19 20:49:41 -05:00
|
|
|
|
2022-10-23 22:17:24 -04:00
|
|
|
class NodeRepository
|
2017-07-19 20:49:41 -05:00
|
|
|
{
|
|
|
|
/**
|
2018-01-04 22:49:50 -06:00
|
|
|
* Return the model backing this repository.
|
2017-07-19 20:49:41 -05:00
|
|
|
*/
|
2022-10-14 10:59:20 -06:00
|
|
|
public function model(): string
|
2017-07-19 20:49:41 -05:00
|
|
|
{
|
|
|
|
return Node::class;
|
|
|
|
}
|
|
|
|
}
|