Completed
Push — master ( 00b214...5d41a6 )
by Cesar
10s
created
src/Model/Response/AbstractJsonResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
      */
68 68
     public function printResponse()
69 69
     {
70
-        header("HTTP/1.1 ".$this->getStatusCode(), true, $this->getStatusCode());
70
+        header("HTTP/1.1 " . $this->getStatusCode(), true, $this->getStatusCode());
71 71
         header('Content-Type: application/json', true);
72 72
         header('Content-Length: ' . strlen($this->toJson()));
73 73
         echo ($this->toJson());
Please login to merge, or discard this patch.