Passed
Branch master (b657fe)
by sabaku
03:33
created
upyun.class.php 1 patch
Braces   +18 added lines, -6 removed lines patch added patch discarded remove patch
@@ -71,7 +71,9 @@  discard block
 block discarded – undo
71 71
     public function makeDir($path, $auto_mkdir = true)
72 72
     {
73 73
         $headers = array('Folder' => 'true');
74
-        if ($auto_mkdir) $headers['Mkdir'] = 'true';
74
+        if ($auto_mkdir) {
75
+            $headers['Mkdir'] = 'true';
76
+        }
75 77
         return $this->_do_request('PUT', $path, $headers);
76 78
     }
77 79
 
@@ -97,12 +99,20 @@  discard block
 block discarded – undo
97 99
      */
98 100
     public function writeFile($path, $file, $auto_mkdir = true, $opts = NULL)
99 101
     {
100
-        if (is_null($opts)) $opts = array();
102
+        if (is_null($opts)) {
103
+            $opts = array();
104
+        }
101 105
 
102
-        if (!is_null($this->_content_md5)) $opts[self::CONTENT_MD5] = $this->_content_md5;
103
-        if (!is_null($this->_file_secret)) $opts[self::CONTENT_SECRET] = $this->_file_secret;
106
+        if (!is_null($this->_content_md5)) {
107
+            $opts[self::CONTENT_MD5] = $this->_content_md5;
108
+        }
109
+        if (!is_null($this->_file_secret)) {
110
+            $opts[self::CONTENT_SECRET] = $this->_file_secret;
111
+        }
104 112
 
105
-        if ($auto_mkdir === true) $opts['Mkdir'] = 'true';
113
+        if ($auto_mkdir === true) {
114
+            $opts['Mkdir'] = 'true';
115
+        }
106 116
 
107 117
         return $this->_do_request('PUT', $path, $opts, $file);
108 118
     }
@@ -299,7 +309,9 @@  discard block
 block discarded – undo
299 309
         $response = curl_exec($ch);
300 310
         $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
301 311
 
302
-        if ($http_code == 0) throw new UpYunException('Connection Failed', $http_code);
312
+        if ($http_code == 0) {
313
+            throw new UpYunException('Connection Failed', $http_code);
314
+        }
303 315
 
304 316
         curl_close($ch);
305 317
 
Please login to merge, or discard this patch.
examples/write_file.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,7 @@
 block discarded – undo
48 48
     fclose($fh);
49 49
     var_dump($rsp);
50 50
     echo "=========DONE\r\n\r\n";
51
-}
52
-catch(Exception $e) {
51
+} catch(Exception $e) {
53 52
     echo $e->getCode();
54 53
     echo $e->getMessage();
55 54
 }
Please login to merge, or discard this patch.
examples/get_list.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,7 @@
 block discarded – undo
13 13
     $list = $upyun->getList('/demo/');
14 14
     var_dump($list);
15 15
     echo "=========DONE\r\n\r\n";
16
-}
17
-catch(Exception $e) {
16
+} catch(Exception $e) {
18 17
     echo $e->getCode();
19 18
     echo $e->getMessage();
20 19
 }
Please login to merge, or discard this patch.