Skip to content

Commit 1b72701

Browse files
modelrailroaderthorsten
authored andcommitted
fix: changed argument order due to #2967
1 parent d1008dc commit 1b72701

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phpmyfaq/src/phpMyFAQ/User/TwoFactor.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ public function __construct(private Configuration $configuration)
4343
{
4444
$this->qrCodeProvider = new EndroidQrCodeProvider();
4545
$this->twoFactorAuth = new TwoFactorAuth(
46+
$this->qrCodeProvider,
4647
$this->configuration->get('main.metaPublisher'),
4748
6,
4849
30,
49-
Algorithm::Sha1,
50-
$this->qrCodeProvider
50+
Algorithm::Sha1
5151
);
5252
}
5353

0 commit comments

Comments
 (0)