13 lines
217 B
PHP
13 lines
217 B
PHP
<?php
|
|
|
|
namespace App\Interface\Test\Proxy;
|
|
|
|
interface UserInfoInterface
|
|
{
|
|
/**
|
|
* 用户信息接口
|
|
* @param int $userId
|
|
* @return array
|
|
*/
|
|
public function getUserInfo(int $userId): array;
|
|
} |