Passed
Push — master ( 0f7200...d795b0 )
by Carsten
02:57
created
src/HttpHelper.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -70,11 +70,11 @@  discard block
 block discarded – undo
70 70
         $httpRequest = request_to_string($request);
71 71
 
72 72
         if (empty($path)) {
73
-            $path = (string) $_SERVER['DOCUMENT_ROOT'];
73
+            $path = (string)$_SERVER['DOCUMENT_ROOT'];
74 74
         }
75 75
 
76 76
         if (empty($path)) {
77
-            $path = (string) getenv('PWD');
77
+            $path = (string)getenv('PWD');
78 78
         }
79 79
 
80 80
         $filename = $path . '/request.http';
@@ -136,11 +136,11 @@  discard block
 block discarded – undo
136 136
         $httpResponse = response_to_string($response);
137 137
 
138 138
         if (empty($path)) {
139
-            $path = (string) $_SERVER['DOCUMENT_ROOT'];
139
+            $path = (string)$_SERVER['DOCUMENT_ROOT'];
140 140
         }
141 141
 
142 142
         if (empty($path)) {
143
-            $path = (string) getenv('PWD');
143
+            $path = (string)getenv('PWD');
144 144
         }
145 145
 
146 146
         $filename = $path . '/response.http';
Please login to merge, or discard this patch.