RuntimeConfiguration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
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\config;
12
13
use expect\Configuration;
14
use expect\ResultReporter;
15
16
/**
17
 * Runtime configuration
18
 *
19
 * @author Noritaka Horio <[email protected]>
20
 * @copyright Noritaka Horio <[email protected]>
21
 */
22
class RuntimeConfiguration implements Configuration
23
{
24
    use ConfigurableConfiguration;
25
26
    /**
27
     * @param \expect\PackageRegistrar[] $matcherRegistrars package registrars
28
     * @param ResultReporter             $resultReporter    reporter of result
29
     */
30
    public function __construct(array $matcherRegistrars = [], ResultReporter $resultReporter = null)
31
    {
32
        $this->resultReporter = $resultReporter;
33
        $this->matcherRegistrars = $matcherRegistrars;
34
    }
35
}
36