Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Arrays extends ASource |
||
12 | { |
||
13 | /** @var array<string, bool|int|float|string|array<string>> */ |
||
14 | protected array $input = []; |
||
15 | |||
16 | /** |
||
17 | * @param array<string, bool|int|float|string|array<string>> $inputs |
||
18 | */ |
||
19 | 4 | public function __construct(array $inputs) |
|
20 | { |
||
21 | 4 | $this->input = $inputs; |
|
22 | 4 | } |
|
23 | |||
24 | 4 | public function getData(): array |
|
27 | } |
||
28 | } |
||
29 |