DefaultConfigFactory   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 5
c 1
b 0
f 0
dl 0
loc 11
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A createRepository() 0 7 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace hanneskod\readmetester\Config;
6
7
use Symfony\Component\Yaml\Yaml;
8
9
final class DefaultConfigFactory
10
{
11
    private const DEFAULT_CONFIG_FILE = __DIR__ . '/../../etc/default_configuration.yaml';
12
13
    public function createRepository(): RepositoryInterface
14
    {
15
        if (!is_file(self::DEFAULT_CONFIG_FILE)) {
16
            throw new \LogicException('Unable to locate default configurations');
17
        }
18
19
        return new ArrayRepository(Yaml::parseFile(self::DEFAULT_CONFIG_FILE));
20
    }
21
}
22