20 lines
202 B
PHP
20 lines
202 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
|
|
namespace HttpServer\IInterface;
|
|
|
|
|
|
/**
|
|
* Interface AuthIdentity
|
|
* @package Snowflake\Snowflake\Http
|
|
*/
|
|
interface AuthIdentity
|
|
{
|
|
|
|
|
|
|
|
public function getIdentity();
|
|
|
|
}
|