| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | final class ArrayRepository implements RepositoryInterface |
||
| 27 | { |
||
| 28 | /** |
||
| 29 | * @var array<string, string> |
||
| 30 | */ |
||
| 31 | private $configs; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param array<string, string> $configs |
||
| 35 | */ |
||
| 36 | public function __construct(array $configs) |
||
| 37 | { |
||
| 38 | $this->configs = $configs; |
||
| 39 | } |
||
| 40 | |||
| 41 | public function getConfigs(): array |
||
| 44 | } |
||
| 45 | } |
||
| 46 |