FileConfigurator   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 38
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 6

Importance

Changes 2
Bugs 1 Features 1
Metric Value
wmc 3
c 2
b 1
f 1
lcom 1
cbo 6
dl 0
loc 38
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A configure() 0 16 2
1
<?php
2
3
/**
4
 * This file is part of expect package.
5
 *
6
 * (c) Noritaka Horio <[email protected]>
7
 *
8
 * This source file is subject to the MIT license that is bundled
9
 * with this source code in the file LICENSE.
10
 */
11
namespace expect\configurator;
12
13
use expect\config\ConfigurationLoader;
14
use expect\Configurator;
15
use expect\context\DefaultContextFactory;
16
use expect\factory\DefaultMatcherFactory;
17
use expect\registry\DefaultMatcherRegistry;
18
19
/**
20
 * File configurator
21
 *
22
 * Configure by the toml file
23
 *
24
 * @author Noritaka Horio <[email protected]>
25
 * @copyright Noritaka Horio <[email protected]>
26
 */
27
class FileConfigurator implements Configurator
28
{
29
    /**
30
     * @var \expect\Configuration
31
     */
32
    private $config;
33
34
    /**
35
     * @param string $configFile
36
     *
37
     * @throws \expect\config\ConfigurationFileNotFoundException
38
     */
39
    public function __construct($configFile)
40
    {
41
        $loader = new ConfigurationLoader();
42
        $this->config = $loader->loadFromFile($configFile);
43
    }
44
45
    /**
46
     * {@inheritdoc}
47
     */
48
    public function configure()
49
    {
50
        $registry = new DefaultMatcherRegistry();
51
        $packages = $this->config->getMatcherRegistrars();
52
53
        foreach ($packages as $package) {
54
            $package->registerTo($registry);
55
        }
56
57
        $dictionary = $registry->toDictionary();
58
        $matcherFactory = new DefaultMatcherFactory($dictionary);
59
60
        $resultReporter = $this->config->getResultReporter();
61
62
        return new DefaultContextFactory($matcherFactory, $resultReporter);
63
    }
64
}
65