16 lines
316 B
PHP
16 lines
316 B
PHP
<?php
|
|
|
|
namespace Extend\TencentIm;
|
|
|
|
class Safe extends Base
|
|
{
|
|
/**
|
|
* 获取用户签名
|
|
* @param string $user_id
|
|
* @return string
|
|
*/
|
|
public function getUserSign(string $user_id = ""): string
|
|
{
|
|
return parent::getUserSign($user_id); // TODO: Change the autogenerated stub
|
|
}
|
|
} |