Total Complexity | 6 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class YamlRepository implements RepositoryInterface |
||
11 | { |
||
12 | private string $filename; |
||
13 | |||
14 | public function __construct(string $filename) |
||
15 | { |
||
16 | $this->filename = $filename; |
||
17 | } |
||
18 | |||
19 | public function getConfigs(): array |
||
29 | } |
||
30 | } |
||
31 | |||
32 | public function getRepositoryName(): string |
||
37 |