Completed
Branch proxy (978f48)
by leo
04:49
created
src/Responses/BaseXmlResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,6 +91,6 @@
 block discarded – undo
91 91
     {
92 92
         $content = $this->removeXmlFirstLine($this->node->asXML());
93 93
 
94
-        return new Response($content, 200, ['Content-Type' => 'application/xml']);
94
+        return new Response($content, 200, [ 'Content-Type' => 'application/xml' ]);
95 95
     }
96 96
 }
97 97
\ No newline at end of file
Please login to merge, or discard this patch.
src/Responses/BaseJsonResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,6 +22,6 @@
 block discarded – undo
22 22
      */
23 23
     public function toResponse()
24 24
     {
25
-        return new Response(json_encode($this->data), 200, ['Content-Type' => 'application/json']);
25
+        return new Response(json_encode($this->data), 200, [ 'Content-Type' => 'application/json' ]);
26 26
     }
27 27
 }
Please login to merge, or discard this patch.