缓存用户权限

This commit is contained in:
wuyanwen
2020-01-17 11:29:17 +08:00
parent 7eeade987a
commit 04d942c7db
2 changed files with 23 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
<?php
/**
* @filename CacheKeys.php
* @createdAt 2020/1/17
* @project https://github.com/yanwenwu/catch-admin
* @document http://doc.catchadmin.com
* @author JaguarJack <njphper@gmail.com>
* @copyright By CatchAdmin
* @license https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt
*/
namespace catcher;
class CatchCacheKeys
{
public const USER_PERMISSIONS = 'user_permissions_';
}