2025-04-15 08:56:26 +08:00
|
|
|
<?php
|
|
|
|
|
|
2025-04-22 15:04:38 +08:00
|
|
|
namespace library\s2\interfaces;
|
2025-04-15 08:56:26 +08:00
|
|
|
|
|
|
|
|
interface LoginInterface
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 创建账号
|
|
|
|
|
*
|
|
|
|
|
* @param string $accout
|
|
|
|
|
* @param string $password
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function login(string $accout, string $password): LoginInterface;
|
|
|
|
|
}
|