| Total Complexity | 3 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class ArrayRepository implements RepositoryInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var array<string, mixed> |
||
| 11 | */ |
||
| 12 | private $configs; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param array<string, mixed> $configs |
||
| 16 | */ |
||
| 17 | public function __construct(array $configs) |
||
| 18 | { |
||
| 19 | $this->configs = $configs; |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getConfigs(): array |
||
| 25 | } |
||
| 26 | |||
| 27 | public function getRepositoryName(): string |
||
| 30 | } |
||
| 31 | } |
||
| 32 |