Total Complexity | 4 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
6 | class S3InputSource extends CloudInputSource |
||
7 | { |
||
8 | /** |
||
9 | * @var array<string,string> |
||
10 | */ |
||
11 | protected array $properties; |
||
12 | |||
13 | /** |
||
14 | * S3InputSource constructor. |
||
15 | * |
||
16 | * @param string[] $uris |
||
17 | * @param string[] $prefixes |
||
18 | * @param array<array<string,string>> $objects |
||
19 | * @param array<string,string> $properties |
||
20 | */ |
||
21 | 5 | public function __construct(array $uris = [], array $prefixes = [], array $objects = [], array $properties = []) |
|
26 | } |
||
27 | |||
28 | /** |
||
29 | * @return array<string,string|string[]|array<array<string,string>>> |
||
30 | */ |
||
31 | 4 | public function toArray(): array |
|
40 | } |
||
41 | |||
42 | 4 | protected function getCloudType(): string |
|
45 | } |
||
46 | } |