Completed
Push — master ( 748e95...d1aac8 )
by Dominik
02:04
created
src/AbstractMessage.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     public function getHeaders(): array
48 48
     {
49
-         return $this->headers;
49
+            return $this->headers;
50 50
     }
51 51
 
52 52
     /**
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function getHeaderLine($name): string
76 76
     {
77
-         return implode(',', $this->getHeader($name));
77
+            return implode(',', $this->getHeader($name));
78 78
     }
79 79
 
80 80
     /**
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function getBody(): StreamInterface
123 123
     {
124
-         return $this->body;
124
+            return $this->body;
125 125
     }
126 126
 
127 127
     /**
Please login to merge, or discard this patch.