![]() 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/ledger.corals.io/Corals/core/User/Contracts/ |
<?php namespace Corals\User\Contracts; use Illuminate\Contracts\Auth\Authenticatable as BaseAuthenticatable; interface TwoFactorAuthenticatableContract extends BaseAuthenticatable { /** * Get the e-mail address used for two-factor authentication. * * @return string */ public function getEmailForTwoFactorAuth(); /** * Get the country code used for two-factor authentication. * * @return string */ public function getAuthCountryCode(); /** * Get the phone number used for two-factor authentication. * * @return string */ public function getAuthPhoneNumber(); /** * Set the country code and phone number used for two-factor authentication. * * @param string $countryCode * @param string $phoneNumber * * @return void */ public function setAuthPhoneInformation($countryCode, $phoneNumber); /** * Get the two-factor provider options in array format. * * @return array */ public function getTwoFactorAuthProviderOptions(); /** * Set the two-factor provider options in array format. * * @param array $options * * @return void */ public function setTwoFactorAuthProviderOptions(array $options); }