Merge branch 'master' of github.com:beyondcode/laravel-websockets

This commit is contained in:
freek 2018-11-28 21:12:24 +01:00
commit 6d32cea614
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ abstract class Controller implements HttpServerInterface
'error' => $exception->getMessage() 'error' => $exception->getMessage()
])); ]));
$connection->send(Psr\str($response)); $connection->send(GuzzleHttp\Psr7\str($response));
$connection->close(); $connection->close();
} }