mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-20 05:14:46 +02:00
17 lines
268 B
PHP
17 lines
268 B
PHP
<?php
|
|
|
|
namespace Pterodactyl\Repositories\Eloquent;
|
|
|
|
use Pterodactyl\Models\RecoveryToken;
|
|
|
|
class RecoveryTokenRepository extends EloquentRepository
|
|
{
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function model()
|
|
{
|
|
return RecoveryToken::class;
|
|
}
|
|
}
|