Passed
Push — master ( 08ce17...8d8d30 )
by Thomas
02:05
created
src/BaiduBosAdapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
     public function deleteDir($dirname)
166 166
     {
167 167
         try {
168
-            $this->client->deleteObject(rtrim($dirname, '/') . '/');
168
+            $this->client->deleteObject(rtrim($dirname, '/').'/');
169 169
         } catch (Exception $exception) {
170 170
             return false;
171 171
         }
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     {
186 186
         try {
187 187
             $this->client->putObject(
188
-                rtrim($dirname, '/') . '/',
188
+                rtrim($dirname, '/').'/',
189 189
                 '',
190 190
                 $this->extractOptions($config)
191 191
             );
Please login to merge, or discard this patch.
src/UtilTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
      */
38 38
     protected function normalizeMeta(array $meta, $path)
39 39
     {
40
-        $result =  Util::pathinfo($path);
40
+        $result = Util::pathinfo($path);
41 41
 
42 42
         if (isset($meta['Last-Modified'])) {
43 43
             $result['timestamp'] = strtotime($meta['Last-Modified']);
Please login to merge, or discard this patch.