Passed
Push — develop ( 5412c0...f2f1c0 )
by nguereza
54s queued 15s
created
src/Http/Client/HttpClient.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -271,8 +271,8 @@
 block discarded – undo
271 271
      */
272 272
     public function contentType(string $contentType): self
273 273
     {
274
-       // If this is a multipart request and boundary was not defined,
275
-       // we define a boundary as this is required for multipart requests.
274
+        // If this is a multipart request and boundary was not defined,
275
+        // we define a boundary as this is required for multipart requests.
276 276
         if (stripos($contentType, 'multipart/') !== false) {
277 277
             if (stripos($contentType, 'boundary') === false) {
278 278
                 $contentType .= sprintf('; boundary="%s"', uniqid((string) time()));
Please login to merge, or discard this patch.