Passed
Pull Request — master (#17)
by Mihail
15:10
created
Client/CurlClient.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -151,9 +151,9 @@
 block discarded – undo
151 151
         $instance = parent::withProtocolVersion($version);
152 152
         $instance->options[CURLOPT_HTTP_VERSION] =
153 153
             ['2' => CURL_HTTP_VERSION_2_0,
154
-             '2.0' => CURL_HTTP_VERSION_2_0,
155
-             '1.1' => CURL_HTTP_VERSION_1_1,
156
-             '1.0' => CURL_HTTP_VERSION_1_0][$version];
154
+                '2.0' => CURL_HTTP_VERSION_2_0,
155
+                '1.1' => CURL_HTTP_VERSION_1_1,
156
+                '1.0' => CURL_HTTP_VERSION_1_0][$version];
157 157
         return $instance;
158 158
     }
159 159
 
Please login to merge, or discard this patch.
Tests/HeaderTraitTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
         $this->SUT->withHeader('foo', ['bar', 1]);
54 54
     }
55 55
 
56
-     public function test_set_header_line_with_invalid_scalar_value()
56
+        public function test_set_header_line_with_invalid_scalar_value()
57 57
     {
58 58
         $this->expectException(\InvalidArgumentException::class);
59 59
         $this->expectExceptionCode(HttpStatus::BAD_REQUEST);
Please login to merge, or discard this patch.