@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | /** |
281 | 281 | * @param array $options |
282 | 282 | * |
283 | - * @return array |
|
283 | + * @return callable |
|
284 | 284 | */ |
285 | 285 | protected function retrievePaginatedListing(array $options) |
286 | 286 | { |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | /** |
444 | 444 | * Read an object and normalize the response. |
445 | 445 | * |
446 | - * @param $path |
|
446 | + * @param string $path |
|
447 | 447 | * |
448 | 448 | * @return array|bool |
449 | 449 | */ |
@@ -520,6 +520,7 @@ discard block |
||
520 | 520 | |
521 | 521 | /** |
522 | 522 | * {@inheritdoc} |
523 | + * @param string $prefix |
|
523 | 524 | */ |
524 | 525 | public function setPathPrefix($prefix) |
525 | 526 | { |
@@ -597,7 +598,7 @@ discard block |
||
597 | 598 | /** |
598 | 599 | * Upload an object. |
599 | 600 | * |
600 | - * @param $path |
|
601 | + * @param string $path |
|
601 | 602 | * @param $body |
602 | 603 | * @param Config $config |
603 | 604 | * |
@@ -693,7 +694,7 @@ discard block |
||
693 | 694 | } |
694 | 695 | |
695 | 696 | /** |
696 | - * @param $location |
|
697 | + * @param string $location |
|
697 | 698 | * |
698 | 699 | * @return bool |
699 | 700 | */ |
@@ -6,9 +6,9 @@ |
||
6 | 6 | use Aws\S3\Exception\DeleteMultipleObjectsException; |
7 | 7 | use Aws\S3\Exception\S3Exception; |
8 | 8 | use Aws\S3\S3Client; |
9 | +use League\Flysystem\AdapterInterface; |
|
9 | 10 | use League\Flysystem\Adapter\AbstractAdapter; |
10 | 11 | use League\Flysystem\Adapter\CanOverwriteFiles; |
11 | -use League\Flysystem\AdapterInterface; |
|
12 | 12 | use League\Flysystem\Config; |
13 | 13 | use League\Flysystem\Util; |
14 | 14 |