![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/ts.corals.io/corals-api/Corals/core/User/Contracts/ |
<?php namespace Corals\User\Contracts; use Illuminate\Http\Request; interface Provider { /** * Determine if the given user has two-factor authentication enabled. * * @param TwoFactorAuthenticatableContract $user * * @return bool */ public function isEnabled(TwoFactorAuthenticatableContract $user); /** * Register the given user with the provider. * * @param TwoFactorAuthenticatableContract $user * @param Request $request * * @return null|array */ public function register(TwoFactorAuthenticatableContract $user, Request $request); /** * Determine if the given token is valid for the given user. * * @param TwoFactorAuthenticatableContract $user * @param string $token * * @return bool */ public function tokenIsValid(TwoFactorAuthenticatableContract $user, $token); /** * Delete the given user from the provider. * * @param TwoFactorAuthenticatableContract $user * * @return bool */ public function delete(TwoFactorAuthenticatableContract $user); }