2015-12-06 13:58:49 -05:00
|
|
|
<?php
|
|
|
|
|
2017-06-10 22:28:44 -05:00
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
2015-12-06 13:58:49 -05:00
|
|
|
|
2017-08-05 17:26:30 -05:00
|
|
|
use Pterodactyl\Models\User;
|
2017-07-01 15:29:49 -05:00
|
|
|
use Pterodactyl\Contracts\Repository\UserRepositoryInterface;
|
2017-06-10 22:28:44 -05:00
|
|
|
|
2017-08-18 22:19:06 -05:00
|
|
|
class UserRepository extends EloquentRepository implements UserRepositoryInterface
|
2016-12-07 22:46:38 +00:00
|
|
|
{
|
2015-12-06 13:58:49 -05:00
|
|
|
/**
|
2018-01-04 22:49:50 -06:00
|
|
|
* Return the model backing this repository.
|
2017-07-08 14:07:51 -05:00
|
|
|
*/
|
2022-10-14 10:59:20 -06:00
|
|
|
public function model(): string
|
2015-12-06 13:58:49 -05:00
|
|
|
{
|
2017-06-10 22:28:44 -05:00
|
|
|
return User::class;
|
2015-12-06 13:58:49 -05:00
|
|
|
}
|
|
|
|
}
|