Total Complexity | 1 |
Total Lines | 30 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class AwsS3v3Factory extends AbstractFactory |
||
27 | { |
||
28 | protected string $alias = 's3'; |
||
29 | protected ?string $package = 'league/flysystem-aws-s3-v3'; |
||
30 | protected string $className = AwsS3Adapter::class; |
||
31 | |||
32 | protected array $defaults = [ |
||
33 | 'bucket' => null, |
||
34 | 'prefix' => '', |
||
35 | 'client' => [ |
||
36 | 'region' => 'eu', |
||
37 | 'version' => '2006-03-01' |
||
38 | ] |
||
39 | ]; |
||
40 | |||
41 | /** |
||
42 | * @inheritDoc |
||
43 | */ |
||
44 | 1 | public function build(array $config): AdapterInterface |
|
59 |