workerman:5.0.0-beta.7
```php
public function index()
{
$this->get('http://192.168.1.201/');
}
public function get(string $url)
{
$http = new Client();
$http->request($url, [
'method' => 'get',
'version' => '1.1',
'success' => 'handleAsyncResult'
]);
}
public function handleAsyncResult() {
}
```
报错:TypeError: call_user_func(): Argument #1 ($callback) must be a valid callback, function "handleAsyncResult" not found or invalid function name in E:\Admin\test\vendor\workerman\http-client\src\Client.php:180
然后就是'handleAsyncResult'里怎么传递请求结果?有点懵逼。。