nooktheme/app/Repositories/Eloquent/RecoveryTokenRepository.php
mowetentertainment1 eb5b65cec6 initial commit
2025-11-01 19:45:11 -04:00

14 lines
238 B
PHP

<?php
namespace Pterodactyl\Repositories\Eloquent;
use Pterodactyl\Models\RecoveryToken;
class RecoveryTokenRepository extends EloquentRepository
{
public function model(): string
{
return RecoveryToken::class;
}
}