@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | } |
46 | 46 | |
47 | 47 | /** |
48 | - * @return mixed |
|
48 | + * @return string |
|
49 | 49 | */ |
50 | 50 | public function getBucket() |
51 | 51 | { |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | } |
54 | 54 | |
55 | 55 | /** |
56 | - * @param $path |
|
56 | + * @param string $path |
|
57 | 57 | * |
58 | 58 | * @return string |
59 | 59 | */ |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | /** |
288 | 288 | * @param string $path |
289 | 289 | * |
290 | - * @return array |
|
290 | + * @return string |
|
291 | 291 | */ |
292 | 292 | public function read($path) |
293 | 293 | { |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | |
78 | 78 | try { |
79 | 79 | $response = Cosapi::upload($this->getBucket(), $tmpfname, $path, |
80 | - null, null, $config->get('insertOnly', 1)); |
|
80 | + null, null, $config->get('insertOnly', 1)); |
|
81 | 81 | |
82 | 82 | $this->deleteTempFile($tmpfname); |
83 | 83 | |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | $uri = stream_get_meta_data($resource)['uri']; |
112 | 112 | |
113 | 113 | $response = Cosapi::upload($this->getBucket(), $uri, $path, |
114 | - null, null, $config->get('insertOnly', 1)); |
|
114 | + null, null, $config->get('insertOnly', 1)); |
|
115 | 115 | |
116 | 116 | $response = $this->normalizeResponse($response); |
117 | 117 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | |
140 | 140 | try { |
141 | 141 | $response = Cosapi::upload($this->getBucket(), $tmpfname, $path, |
142 | - null, null, $config->get('insertOnly', 0)); |
|
142 | + null, null, $config->get('insertOnly', 0)); |
|
143 | 143 | |
144 | 144 | $this->deleteTempFile($tmpfname); |
145 | 145 | |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | $uri = stream_get_meta_data($resource)['uri']; |
174 | 174 | |
175 | 175 | $response = Cosapi::upload($this->getBucket(), $uri, $path, |
176 | - null, null, $config->get('insertOnly', 0)); |
|
176 | + null, null, $config->get('insertOnly', 0)); |
|
177 | 177 | |
178 | 178 | $response = $this->normalizeResponse($response); |
179 | 179 |
@@ -39,7 +39,7 @@ |
||
39 | 39 | $this->bucket = $config['bucket']; |
40 | 40 | $this->debug = $config['debug']; |
41 | 41 | |
42 | - $this->setPathPrefix($config['protocol'] . '://' . $config['domain'] . '/'); |
|
42 | + $this->setPathPrefix($config['protocol'].'://'.$config['domain'].'/'); |
|
43 | 43 | |
44 | 44 | Cosapi::setTimeout($config['timeout']); |
45 | 45 | } |
@@ -45,12 +45,12 @@ discard block |
||
45 | 45 | { |
46 | 46 | $temp = tmpfile(); |
47 | 47 | fwrite($temp, "writing to tempfile"); |
48 | - $this->assertTrue((bool)$adapter->writeStream('foo/bar.md', $temp, new Config(['insertOnly' => 0]))); |
|
48 | + $this->assertTrue((bool) $adapter->writeStream('foo/bar.md', $temp, new Config(['insertOnly' => 0]))); |
|
49 | 49 | fclose($temp); |
50 | 50 | |
51 | 51 | $temp = tmpfile(); |
52 | 52 | fwrite($temp, uniqid()); |
53 | - $this->assertFalse((bool)$adapter->writeStream('foo/bar.md', $temp, new Config(['insertOnly' => 1]))); |
|
53 | + $this->assertFalse((bool) $adapter->writeStream('foo/bar.md', $temp, new Config(['insertOnly' => 1]))); |
|
54 | 54 | fclose($temp); |
55 | 55 | } |
56 | 56 | |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | { |
72 | 72 | $temp = tmpfile(); |
73 | 73 | fwrite($temp, "writing to tempfile"); |
74 | - $this->assertTrue((bool)$adapter->updateStream('foo/bar.md', $temp, new Config(['insertOnly' => 0]))); |
|
74 | + $this->assertTrue((bool) $adapter->updateStream('foo/bar.md', $temp, new Config(['insertOnly' => 0]))); |
|
75 | 75 | fclose($temp); |
76 | 76 | |
77 | 77 | $temp = tmpfile(); |
78 | 78 | fwrite($temp, uniqid()); |
79 | - $this->assertFalse((bool)$adapter->updateStream('foo/bar.md', $temp, new Config(['insertOnly' => 1]))); |
|
79 | + $this->assertFalse((bool) $adapter->updateStream('foo/bar.md', $temp, new Config(['insertOnly' => 1]))); |
|
80 | 80 | fclose($temp); |
81 | 81 | } |
82 | 82 | |
@@ -115,8 +115,8 @@ discard block |
||
115 | 115 | */ |
116 | 116 | public function testCreateDir($adapter) |
117 | 117 | { |
118 | - $this->assertTrue((bool)$adapter->createDir('bar', new Config())); |
|
119 | - $this->assertFalse((bool)$adapter->createDir('bar', new Config())); |
|
118 | + $this->assertTrue((bool) $adapter->createDir('bar', new Config())); |
|
119 | + $this->assertFalse((bool) $adapter->createDir('bar', new Config())); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | /** |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | public function testGetUrl($adapter, $config) |
162 | 162 | { |
163 | 163 | $this->assertSame( |
164 | - $config['protocol'] . '://' . $config['domain'] . '/foo/bar.md', |
|
164 | + $config['protocol'].'://'.$config['domain'].'/foo/bar.md', |
|
165 | 165 | $adapter->getUrl('foo/bar.md') |
166 | 166 | ); |
167 | 167 | } |