Passed
Push — master ( 96430b...de91ed )
by Marcus
02:58
created
src/Client.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -101,11 +101,11 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.