| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class SimpleArray implements ISource |
||
| 15 | { |
||
| 16 | /** @var array<string, array<int, string>> */ |
||
| 17 | protected array $content = []; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param array<string, array<int, string>> $content |
||
| 21 | */ |
||
| 22 | 7 | public function __construct(array $content) |
|
| 25 | 7 | } |
|
| 26 | |||
| 27 | 6 | public function get(): array |
|
| 32 |