hanyuu/src/Users/IUserAuthInfo.php

11 lines
208 B
PHP

<?php
namespace Hanyuu\Users;
use Index\DateTime;
interface IUserAuthInfo {
public function getUserId(): string;
public function getType(): string;
public function getEnabledTime(): DateTime;
}