Passed
Branch master (cd6287)
by Thomas
09:15
created
Category
src/BaiduBosAdapter.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
     public function deleteDir($dirname)
164 164
     {
165 165
         try {
166
-            $this->client->deleteObject(rtrim($dirname, '/') . '/');
166
+            $this->client->deleteObject(rtrim($dirname, '/').'/');
167 167
         } catch (Exception $exception) {
168 168
             return false;
169 169
         }
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
     {
184 184
         try {
185 185
             $this->client->putObject(
186
-                rtrim($dirname, '/') . '/',
186
+                rtrim($dirname, '/').'/',
187 187
                 '',
188 188
                 $this->extractOptions($config)
189 189
             );
@@ -422,7 +422,7 @@  discard block
 block discarded – undo
422 422
      */
423 423
     protected function normalizeMeta(array $meta, $path)
424 424
     {
425
-        $result =  Util::pathinfo($path);
425
+        $result = Util::pathinfo($path);
426 426
 
427 427
         if (isset($meta['Last-Modified'])) {
428 428
             $result['timestamp'] = strtotime($meta['Last-Modified']);
Please login to merge, or discard this patch.