We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0ed0ce commit 9005437Copy full SHA for 9005437
app/Controller/IndexController.php
@@ -21,7 +21,7 @@ public function index()
21
22
return [
23
'method' => $method,
24
- 'message' => "Hello $user.",
+ 'message' => "Hello {$user}.",
25
];
26
}
27
config/autoload/server.php
@@ -30,7 +30,7 @@
30
'settings' => [
31
'enable_coroutine' => true,
32
'worker_num' => swoole_cpu_num(),
33
- 'pid_file' => 'runtime/hyperf.pid',
+ 'pid_file' => BASE_PATH . '/runtime/hyperf.pid',
34
'open_tcp_nodelay' => true,
35
'max_coroutine' => 100000,
36
'open_http2_protocol' => true,
0 commit comments