Skip to content

Commit

Permalink
Update Auth2FA.php
Browse files Browse the repository at this point in the history
Added static to prevent warnings about calls to non static method
  • Loading branch information
michelterstege81 authored Dec 15, 2022
1 parent 46820ab commit 3722cea
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Facades/Auth2FA.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 3722cea

Please sign in to comment.