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 AccountInterface
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* 创建账号
|
|
|
|
|
*
|
|
|
|
|
* @param string $accout
|
|
|
|
|
* @param string $password
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function create(string $accout, string $password);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 删除账号
|
|
|
|
|
*
|
|
|
|
|
* @param int $id
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
public function delete(int $id);
|
|
|
|
|
}
|