Skip to content

Commit

Permalink
Return types and FQCN imports
Browse files Browse the repository at this point in the history
  • Loading branch information
parijke committed Nov 29, 2023
1 parent b09d1fc commit 60c5e16
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,12 @@ class SmsRecoveryTokenService
{
final public const REGISTRATION_RECOVERY_TOKEN_ID = 'registration';

public function __construct(private readonly StepupSmsRecoveryTokenService $smsService, private readonly TranslatorInterface $translator, private readonly CommandService $commandService, private readonly RecoveryTokenState $stateHandler)
{
public function __construct(
private readonly StepupSmsRecoveryTokenService $smsService,
private readonly TranslatorInterface $translator,
private readonly CommandService $commandService,
private readonly RecoveryTokenState $stateHandler,
) {
}

public function getOtpRequestsRemainingCount(string $identifier): int
Expand Down

0 comments on commit 60c5e16

Please sign in to comment.