mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-24 09:34:44 +02:00
14 lines
222 B
PHP
14 lines
222 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Eloquent;
|
|
|
|
use App\Models\RecoveryToken;
|
|
|
|
class RecoveryTokenRepository extends EloquentRepository
|
|
{
|
|
public function model(): string
|
|
{
|
|
return RecoveryToken::class;
|
|
}
|
|
}
|