We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fbe973 commit 42ed46aCopy full SHA for 42ed46a
app/code/Magento/AwsS3/Driver/AwsS3.php
@@ -10,6 +10,7 @@
10
use Generator;
11
use League\Flysystem\Config;
12
use League\Flysystem\FilesystemAdapter;
13
+use League\Flysystem\Visibility;
14
use Magento\Framework\Exception\FileSystemException;
15
use Magento\Framework\Filesystem\DriverInterface;
16
use Magento\Framework\Phrase;
@@ -29,7 +30,7 @@ class AwsS3 implements RemoteDriverInterface
29
30
31
private const TEST_FLAG = 'storage.flag';
32
- private const CONFIG = ['ACL' => 'private'];
33
+ private const CONFIG = [Config::OPTION_VISIBILITY => Visibility::PRIVATE];
34
35
/**
36
* @var FilesystemAdapter
0 commit comments