Files
kiri-core/HttpServer/IInterface/AuthIdentity.php
T
as2252258@163.com 682246df28 modify
2021-08-11 01:04:57 +08:00

26 lines
296 B
PHP

<?php
declare(strict_types=1);
namespace HttpServer\IInterface;
/**
* Interface AuthIdentity
* @package Kiri\Kiri\Http
*/
interface AuthIdentity
{
public function getIdentity();
/**
* @return string|int
* 获取唯一识别码
*/
public function getUniqueId(): string|int;
}