Test Failed
Branch main (612a9e)
by Muhammad Umer
11:32
created
src/http/Response.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         }
40 40
 
41 41
         $this->setVersion($config['version'])
42
-             ->withStatus($config['code']);
42
+                ->withStatus($config['code']);
43 43
 
44 44
         if (!isset($config['reasonPhrase'])) {
45 45
             $config['reasonPhrase'] = self::$responseCodes[$config['code']];
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
         }
53 53
 
54 54
         $this->setReasonPhrase($config['reasonPhrase'])
55
-             ->setHeaders($config['headers'])
56
-             ->setBody($config['body']);
55
+                ->setHeaders($config['headers'])
56
+                ->setBody($config['body']);
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.
src/Common/OperatingSystem.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
             default:
66 66
                 $c_os = 'Unknown';
67 67
                 break;
68
-         }
68
+            }
69 69
 
70 70
         return $c_os;
71 71
     }
Please login to merge, or discard this patch.