Remove useless method parameter

This commit is contained in:
Bubka 2021-11-22 01:13:09 +01:00
parent 025cfc5e58
commit 923ff04e3c

View File

@ -312,12 +312,8 @@ class TwoFAccountService
*
* @param bool $usingUri Whether or not the token should be fed with the account uri
*/
private function initTokenWithTwoFAccount(TwoFAccount $twofaccount, bool $useLegacyUri = false) : void
private function initTokenWithTwoFAccount(TwoFAccount $twofaccount) : void
{
if ( $useLegacyUri ) {
$this->initTokenWithUri($twofaccount->legacy_uri);
}
else {
$dto = new TwoFAccountDto();
$dto->otp_type = $twofaccount->otp_type;
@ -333,7 +329,6 @@ class TwoFAccountService
$this->initTokenWithParameters($dto);
}
}
/**