From 306e604cf8fcf0782bba3c9ef90387f226926a17 Mon Sep 17 00:00:00 2001 From: Al Ganiev Date: Sun, 28 Jul 2019 23:54:58 +1000 Subject: [PATCH] Apply fixes from StyleCI (#366) --- src/Configuration/ElFinderConfigurationReader.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Configuration/ElFinderConfigurationReader.php b/src/Configuration/ElFinderConfigurationReader.php index b98c7ea..d0457c8 100644 --- a/src/Configuration/ElFinderConfigurationReader.php +++ b/src/Configuration/ElFinderConfigurationReader.php @@ -262,9 +262,9 @@ private function configureFlysystem($opt, $adapter, $serviceName) 'key' => $opt['aws_s3_v3']['key'], 'secret' => $opt['aws_s3_v3']['secret'], ), - 'region' => $opt['aws_s3_v3']['region'], - 'version' => $opt['aws_s3_v3']['version'], - 'endpoint' => $opt['aws_s3_v3']['endpoint'], + 'region' => $opt['aws_s3_v3']['region'], + 'version' => $opt['aws_s3_v3']['version'], + 'endpoint' => $opt['aws_s3_v3']['endpoint'], 'use_path_style_endpoint' => $opt['aws_s3_v3']['use_path_style_endpoint'], )); $filesystem = new Filesystem(new AwsS3v3($client, $opt['aws_s3_v3']['bucket_name'], $opt['aws_s3_v3']['optional_prefix'], $opt['aws_s3_v3']['options']));