Skip to content

Commit

Permalink
fix: changed argument order due to #2967
Browse files Browse the repository at this point in the history
  • Loading branch information
modelrailroader authored and thorsten committed May 28, 2024
1 parent d1008dc commit 1b72701
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpmyfaq/src/phpMyFAQ/User/TwoFactor.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ public function __construct(private Configuration $configuration)
{
$this->qrCodeProvider = new EndroidQrCodeProvider();
$this->twoFactorAuth = new TwoFactorAuth(
$this->qrCodeProvider,
$this->configuration->get('main.metaPublisher'),
6,
30,
Algorithm::Sha1,
$this->qrCodeProvider
Algorithm::Sha1
);
}

Expand Down

0 comments on commit 1b72701

Please sign in to comment.