Merge branch 'master' into share-files

This commit is contained in:
Marcel Pociot
2021-05-18 12:42:28 +02:00
17 changed files with 82 additions and 7938 deletions

View File

@@ -392,7 +392,7 @@ class TunnelTest extends TestCase
protected function createTestHttpServer()
{
$server = new Server(function (ServerRequestInterface $request) {
$server = new Server($this->loop, function (ServerRequestInterface $request) {
return new Response(200, ['Content-Type' => 'text/plain'], 'Hello World!');
});