From 647def8d4386782396f1b51cff0f0bf6266d5893 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Wed, 28 Nov 2018 22:37:10 +0100 Subject: [PATCH] wip --- src/HttpApi/Controllers/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HttpApi/Controllers/Controller.php b/src/HttpApi/Controllers/Controller.php index db97691..5e551a0 100644 --- a/src/HttpApi/Controllers/Controller.php +++ b/src/HttpApi/Controllers/Controller.php @@ -71,7 +71,7 @@ abstract class Controller implements HttpServerInterface 'error' => $exception->getMessage() ])); - $connection->send(GuzzleHttp\Psr7\str($response)); + $connection->send(\GuzzleHttp\Psr7\str($response)); $connection->close(); }