Cleaned some unused elements during testing

This commit is contained in:
Dan Brown 2021-08-21 15:38:43 +01:00
parent 78e94bb003
commit 2d306949b5
No known key found for this signature in database
GPG Key ID: 46D9F943C24A2EF9
2 changed files with 2 additions and 19 deletions

View File

@ -34,20 +34,14 @@ class BackupCodeService
/** /**
* Remove the given input code from the given available options. * Remove the given input code from the given available options.
* Will return null if no codes remain otherwise will be a JSON string to contain * Will return a JSON string containing the codes.
* the codes.
*/ */
public function removeInputCodeFromSet(string $code, string $codeSet): ?string public function removeInputCodeFromSet(string $code, string $codeSet): string
{ {
$cleanCode = $this->cleanInputCode($code); $cleanCode = $this->cleanInputCode($code);
$codes = json_decode($codeSet); $codes = json_decode($codeSet);
$pos = array_search($cleanCode, $codes, true); $pos = array_search($cleanCode, $codes, true);
array_splice($codes, $pos, 1); array_splice($codes, $pos, 1);
if (count($codes) === 0) {
return null;
}
return json_encode($codes); return json_encode($codes);
} }

View File

@ -58,17 +58,6 @@ class MfaValue extends Model
return $mfaVal ? $mfaVal->getValue() : null; return $mfaVal ? $mfaVal->getValue() : null;
} }
/**
* Delete any stored MFA values for the given user and method.
*/
public static function deleteValuesForUser(User $user, string $method): void
{
static::query()
->where('user_id', '=', $user->id)
->where('method', '=', $method)
->delete();
}
/** /**
* Decrypt the value attribute upon access. * Decrypt the value attribute upon access.
*/ */