@@ -273,7 +273,7 @@ discard block |
||
| 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 |
||
| 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 | |