'mode' => SWOOLE_BASE,
'servers' => [
[
'name' => 'http',
'type' => ServerInterface::SERVER_HTTP,
'host' => env('HTTP_HOST', '0.0.0.0'),
'port' => (int) env('HTTP_POER', 9501),
'sock_type' => SWOOLE_SOCK_TCP,
'callbacks' => [
Event::ON_REQUEST => [Hyperf\HttpServer\Server::class, 'onRequest'],
],
],
]
Search before asking
Apache SkyWalking Component
PHP (apache/skywalking-php)
What happened
#12806

This fix only supports coroutine style and lacks asynchronous style. Currently, I am using asynchronous style
https://wiki.swoole.com/zh-cn/#/http_server
What you expected to happen
Hope to support asynchronous style
How to reproduce
hyperf frame catalogue: config/server.php
Anything else
No response
Are you willing to submit a pull request to fix on your own?
Code of Conduct