From 3722cea37b304b5c687e57c29c1422dd140f2db5 Mon Sep 17 00:00:00 2001 From: michelterstege81 <118480982+michelterstege81@users.noreply.github.com> Date: Thu, 15 Dec 2022 16:33:14 +0100 Subject: [PATCH] Update Auth2FA.php Added static to prevent warnings about calls to non static method --- src/Facades/Auth2FA.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Facades/Auth2FA.php b/src/Facades/Auth2FA.php index 73fbbcc..43c81ce 100644 --- a/src/Facades/Auth2FA.php +++ b/src/Facades/Auth2FA.php @@ -6,12 +6,12 @@ use Laragear\TwoFactor\TwoFactorLoginHelper; /** - * @method bool attempt(array $credentials = [], mixed $remember = false) - * @method \Laragear\TwoFactor\TwoFactorLoginHelper view(string $view) - * @method \Laragear\TwoFactor\TwoFactorLoginHelper message(string $message) - * @method \Laragear\TwoFactor\TwoFactorLoginHelper input(string $input) - * @method \Laragear\TwoFactor\TwoFactorLoginHelper sessionKey(string $sessionKey) - * @method \Laragear\TwoFactor\TwoFactorLoginHelper guard(string $guard) + * @method static bool attempt(array $credentials = [], mixed $remember = false) + * @method static \Laragear\TwoFactor\TwoFactorLoginHelper view(string $view) + * @method static \Laragear\TwoFactor\TwoFactorLoginHelper message(string $message) + * @method static \Laragear\TwoFactor\TwoFactorLoginHelper input(string $input) + * @method static \Laragear\TwoFactor\TwoFactorLoginHelper sessionKey(string $sessionKey) + * @method static \Laragear\TwoFactor\TwoFactorLoginHelper guard(string $guard) * * @see \Laragear\TwoFactor\TwoFactorLoginHelper */