DefaultConfigFactory::createRepository()   A
last analyzed

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 7
rs 10
cc 2
nc 2
nop 0
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