Total Complexity | 6 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | final class UserConfigRepository implements RepositoryInterface |
||
10 | { |
||
11 | public const CONFIG_FILENAME = 'readme-tester.yaml'; |
||
12 | public const DIST_CONFIG_FILENAME = 'readme-tester.yaml.dist'; |
||
13 | |||
14 | /** @var array<string, mixed> */ |
||
15 | private array $configs = []; |
||
16 | |||
17 | private string $name = ''; |
||
18 | |||
19 | public function __construct() |
||
26 | } |
||
27 | } |
||
28 | } |
||
29 | |||
30 | public function getConfigs(): array |
||
33 | } |
||
34 | |||
35 | public function getRepositoryName(): string |
||
40 |