Passed
Pull Request — master (#60)
by
unknown
13:05
created
src/Upyun/Upyun.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 namespace Upyun;
6 6
 
7 7
 use Upyun\Api\Rest;
8
-
9 8
 use GuzzleHttp\Client;
10 9
 use GuzzleHttp\Psr7;
11 10
 use GuzzleHttp;
Please login to merge, or discard this patch.
src/Upyun/Uploader.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
         if (! $useBlock) {
37 37
             $req = new Rest($this->config);
38 38
             return $req->request('PUT', $path)
39
-                       ->withHeaders($params)
40
-                       ->withFile($stream)
41
-                       ->send();
39
+                        ->withHeaders($params)
40
+                        ->withFile($stream)
41
+                        ->send();
42 42
         } elseif ($this->config->uploadType === 'BLOCK_PARALLEL') {
43 43
             return $this->concurrentPointUpload($path, $stream, $params);
44 44
         } else {
Please login to merge, or discard this patch.