Skip to content

Commit

Permalink
fix: bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HyperLife1119 authored and yunwuxin committed Jul 8, 2021
1 parent 5e11d79 commit 8acae2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/concerns/InteractsWithHttp.php
Expand Up @@ -30,7 +30,7 @@ public function createHttpServer()
{
$host = $this->getConfig('http.host');
$port = $this->getConfig('http.port');
$options = $this->getConfig('http.options');
$options = $this->getConfig('http.options', []);

$server = new Server($host, $port, false, true);
$server->set($options);
Expand Down

0 comments on commit 8acae2e

Please sign in to comment.