Completed
Pull Request — master (#152)
by
unknown
05:20
created
src/AwsS3Adapter.php 2 patches
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.
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
     /**
306 306
      * @param array $options
307 307
      *
308
-     * @return array
308
+     * @return callable
309 309
      */
310 310
     protected function retrievePaginatedListing(array $options)
311 311
     {
@@ -468,7 +468,7 @@  discard block
 block discarded – undo
468 468
     /**
469 469
      * Read an object and normalize the response.
470 470
      *
471
-     * @param $path
471
+     * @param string $path
472 472
      *
473 473
      * @return array|bool
474 474
      */
@@ -590,7 +590,7 @@  discard block
 block discarded – undo
590 590
     /**
591 591
      * Upload an object.
592 592
      *
593
-     * @param        $path
593
+     * @param        string $path
594 594
      * @param        $body
595 595
      * @param Config $config
596 596
      *
@@ -686,7 +686,7 @@  discard block
 block discarded – undo
686 686
     }
687 687
 
688 688
     /**
689
-     * @param $location
689
+     * @param string $location
690 690
      *
691 691
      * @return bool
692 692
      */
Please login to merge, or discard this patch.