mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 18:08:06 +00:00
12 lines
231 B
PHP
12 lines
231 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class RecoveryCode extends Consommable
|
|
{
|
|
use HasFactory;
|
|
|
|
protected ?string $configExpirationMinutesKey = 'recovery_code_expiration_minutes';
|
|
}
|