28 lines
543 B
PHP
28 lines
543 B
PHP
<?php
|
|
|
|
namespace Modules\Google2FA\Contracts;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphOne;
|
|
|
|
interface CanUseGoogle2FA
|
|
{
|
|
public function google2fa(): MorphOne;
|
|
|
|
/**
|
|
* Notes : 获取用户名称
|
|
*
|
|
* @Date : 2022/12/1 13:47
|
|
* @Author : <Jason.C>
|
|
* @return string
|
|
*/
|
|
public function getUsername(): string;
|
|
|
|
/**
|
|
* Notes : 获取用户昵称
|
|
*
|
|
* @Date : 2022/12/1 13:47
|
|
* @Author : <Jason.C>
|
|
* @return string
|
|
*/
|
|
public function getNickname(): string;
|
|
} |