@@ -101,11 +101,11 @@ |
||
101 | 101 | */ |
102 | 102 | public function addBody(mixed $body = []): RequestInterface |
103 | 103 | { |
104 | - if(is_array($body) && is_array($this->body)) { |
|
104 | + if (is_array($body) && is_array($this->body)) { |
|
105 | 105 | $this->body = array_merge($this->body, $body); |
106 | 106 | } |
107 | 107 | |
108 | - if(is_string($body) && is_string($this->body)) { |
|
108 | + if (is_string($body) && is_string($this->body)) { |
|
109 | 109 | $this->body .= $body; |
110 | 110 | } |
111 | 111 |