Passed
Pull Request — master (#255)
by Christopher
03:45
created
src/POData/BatchProcessor/IncomingChangeSetRequest.php 1 patch
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
             $name                         = strtr(strtoupper(trim($key)), '-', '_');
28 28
             $value                        = trim($value);
29 29
             $name                         = substr($name, 0, 5) === 'HTTP_' || $name == 'CONTENT_TYPE' ? $name : 'HTTP_' . $name;
30
-            if('HTTP_CONTENT_ID' === $name){
30
+            if('HTTP_CONTENT_ID' === $name) {
31 31
                 $this->contentID = $value;
32
-            }else {
32
+            } else {
33 33
                 $inboundRequestHeaders[$name] = $value;
34 34
             }
35 35
             $headerLine = strtok("\n");
Please login to merge, or discard this patch.