Completed
Pull Request — master (#143)
by
unknown
07:34
created
src/AwsS3Adapter.php 2 patches
Doc Comments   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -280,7 +280,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
693 694
     }
694 695
 
695 696
     /**
696
-     * @param $location
697
+     * @param string $location
697 698
      *
698 699
      * @return bool
699 700
      */
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.