hyperf-chat/app/Cache/FriendApply.php

19 lines
270 B
PHP
Raw Normal View History

2021-05-20 22:23:48 +08:00
<?php
namespace App\Cache;
use App\Cache\Repository\HashRedis;
2021-07-29 23:30:42 +08:00
use App\Traits\StaticInstance;
2021-05-20 22:23:48 +08:00
/**
* 好友申请未读数 - 缓存助手
*
* @package App\Cache
*/
class FriendApply extends HashRedis
{
2021-07-29 23:30:42 +08:00
use StaticInstance;
2021-05-20 22:23:48 +08:00
public $name = 'friend-apply';
}