From edcf205dba465b9474127d9f0fb7586d986a68a6 Mon Sep 17 00:00:00 2001 From: Marcel Pociot Date: Wed, 27 Feb 2019 15:23:47 +0100 Subject: [PATCH] Apply fixes from StyleCI (#123) --- 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 92315c2..17279bf 100644 --- a/src/HttpApi/Controllers/Controller.php +++ b/src/HttpApi/Controllers/Controller.php @@ -43,7 +43,7 @@ abstract class Controller implements HttpServerInterface $this->contentLength = $this->findContentLength($request->getHeaders()); - $this->requestBuffer = (string)$request->getBody(); + $this->requestBuffer = (string) $request->getBody(); $this->checkContentLength($connection); }