You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -10,17 +10,17 @@ Version 3.x requires at least PHP 8.2.
10
10
11
11
### Constructor signature change
12
12
13
-
In order to ensure users of this library make a conscious choice of QR Code Provider, the QR Code Provider is now a mandatory argument.
13
+
In order to ensure users of this library make a conscious choice of QR Code Provider, the QR Code Provider is now a mandatory argument, in first place.
14
14
15
-
If you didn't provide one explicitely before, you can get the old behavior with:
15
+
If you didn't provide one explicitly before, you can get the old behavior with:
16
16
17
17
~~~php
18
18
use RobThree\Auth\TwoFactorAuth;
19
19
use RobThree\Auth\Providers\Qr\QRServerProvider;
20
20
$tfa = new TwoFactorAuth(new QRServerProvider());
21
21
~~~
22
22
23
-
If you provided one before, the order of the paramaters have been changed, so simply move the QRCodeProvider argument to the first place.
23
+
If you provided one before, the order of the parameters have been changed, so simply move the QRCodeProvider argument to the first place.
24
24
25
25
Documentation on selecting a QR Code Provider is available here: [QR Code Provider documentation](https://robthree.github.io/TwoFactorAuth/qr-codes.html).
0 commit comments