cbcf62086f
Co-authored-by: DaneEveritt <dane@daneeveritt.com>
17 lines
373 B
PHP
17 lines
373 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
use Pterodactyl\Models\User;
|
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
|
|
|
class UserRepository extends EloquentRepository implements UserRepositoryInterface
|
|
{
|
|
/**
|
|
* Return the model backing this repository.
|
|
*/
|
|
public function model(): string
|
|
{
|
|
return User::class;
|
|
}
|
|
}
|