Completed
Pull Request — master (#26)
by sabaku
03:46
created
src/Upyun/Api/Multi.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     public function __construct(Config $config) {
19 19
         $this->config = $config;
20 20
         $this->url = ($this->config->useSsl ? 'https://' : 'http://') . Config::ED_FORM . '/'.
21
-                     $this->config->bucketName;
21
+                        $this->config->bucketName;
22 22
     }
23 23
 
24 24
     /**
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 
105 105
         $multipart = [];
106 106
         foreach ($postData as $key => $value) {
107
-           $multipart[] = ['name' => $key, 'contents' => $value];
107
+            $multipart[] = ['name' => $key, 'contents' => $value];
108 108
         }
109 109
         $multipart[] = [
110 110
             'name' => 'file',
Please login to merge, or discard this patch.