Completed
Push — master ( 5cc937...1bc6b8 )
by frey
05:07
created
src/Adapter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
             return true;
274 274
         }
275 275
 
276
-        $keys = array_filter((array) $response['Contents'], function ($item) {
276
+        $keys = array_filter((array) $response['Contents'], function($item) {
277 277
             if ($isDir = substr($item['Key'], -1) === '/') {
278 278
                 $this->delete($item['Key']);
279 279
             }
@@ -284,7 +284,7 @@  discard block
 block discarded – undo
284 284
             return true;
285 285
         }
286 286
 
287
-        $keys = array_map(function ($item) {
287
+        $keys = array_map(function($item) {
288 288
             return ['Key' => $item['Key']];
289 289
         }, $keys);
290 290
 
Please login to merge, or discard this patch.