tmp
This commit is contained in:
parent
df6f5c3a09
commit
e7aeeace26
18 changed files with 614 additions and 65 deletions
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue