#### 问题描述
这里写描述
运行下边代码提示如下
Error: Call to undefined method support\Redis::rawCommand()
#### 程序代码或配置
```
use support\Redis;
$redis = new Redis();
$clients = $redis::rawCommand('CLIENT', 'LIST');
return json($clients);
```
#### 操作系统环境及workerman/webman等具体版本
这里写具体的系统环境相关信息
Workerman version:4.1.15 PHP version:7.3.33
已解决,解决后的代码如下(有更新类库和redis)
$redis = new Redis();
$clients = $redis::rawCommand('CLIENT','CLIENT','LIST');
return json($clients);