19 lines
313 B
PHP
19 lines
313 B
PHP
|
<?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;
|
||
|
}
|
||
|
}
|