Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class ArrayAdapter extends AAdapter |
||
14 | { |
||
15 | /** @var array<int|string, string|int|float|null> */ |
||
16 | protected array $inputs = []; |
||
17 | protected string $inputType = IEntry::SOURCE_GET; |
||
18 | |||
19 | /** |
||
20 | * @param array<int|string, string|int|float|null> $inputs |
||
21 | */ |
||
22 | 1 | public function __construct(array $inputs) |
|
25 | 1 | } |
|
26 | |||
27 | 2 | public function loadEntries(string $inputType): void |
|
35 | 2 | } |
|
36 | |||
37 | 2 | public function getSource(): string |
|
42 |