Files
cunkebao_v3/Server/extend/library/s2/interfaces/LoginInterface.php

16 lines
271 B
PHP
Raw Normal View History

2025-06-06 17:09:27 +08:00
<?php
namespace library\s2\interfaces;
interface LoginInterface
{
/**
* 创建账号
*
* @param string $accout
* @param string $password
* @return mixed
*/
public function login(string $accout, string $password): LoginInterface;
}