mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 11:22:10 +08:00
15 lines
223 B
PHP
15 lines
223 B
PHP
<?php
|
|
|
|
namespace App\Cache\Redis;
|
|
|
|
class RedisKey
|
|
{
|
|
/**
|
|
* @param int $id
|
|
* @return string
|
|
*/
|
|
public static function getAdminUserInfoKey(int $id): string
|
|
{
|
|
return 'admin_user:'.$id;
|
|
}
|
|
} |