Apply Laravel Pint fixes

This commit is contained in:
Bubka
2023-03-26 17:13:32 +02:00
parent 1e0c0b8cfc
commit ac6c715e9a
73 changed files with 33 additions and 247 deletions

View File

@ -8,17 +8,11 @@ interface WebAuthnAuthenticatable extends Authenticatable
{
/**
* Return the handle used to identify his credentials.
*
* @return string
*/
public function userHandle() : string;
/**
* Saves a new alias for a given WebAuthn credential.
*
* @param string $id
* @param string $alias
* @return bool
*/
public function renameCredential(string $id, string $alias) : bool;
@ -26,15 +20,11 @@ interface WebAuthnAuthenticatable extends Authenticatable
* Removes one or more credentials previously registered.
*
* @param string|array $id
* @return void
*/
public function flushCredential($id) : void;
/**
* Sends a webauthn recovery email to the user.
*
* @param string $token
* @return void
*/
public function sendWebauthnRecoveryNotification(string $token) : void;
}