mirror of
https://github.com/MrUnknownDE/panel.git
synced 2026-04-18 22:33:44 +02:00
tmp
This commit is contained in:
18
app/Repositories/Eloquent/AdminRolesRepository.php
Normal file
18
app/Repositories/Eloquent/AdminRolesRepository.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace Pterodactyl\Repositories\Eloquent;
|
||||
|
||||
use Pterodactyl\Models\AdminRole;
|
||||
|
||||
class AdminRolesRepository extends EloquentRepository
|
||||
{
|
||||
/**
|
||||
* Return the model backing this repository.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function model()
|
||||
{
|
||||
return AdminRole::class;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user