DefaultConfiguration::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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\package\DefaultPackageRegistrar;
15
use expect\reporter\ExceptionReporter;
16
17
/**
18
 * Default configuration
19
 *
20
 * @author Noritaka Horio <[email protected]>
21
 * @copyright Noritaka Horio <[email protected]>
22
 */
23
class DefaultConfiguration implements Configuration
24
{
25
    use ConfigurableConfiguration;
26
27
    /**
28
     * Create a new default configuration
29
     */
30
    public function __construct()
31
    {
32
        $this->resultReporter = new ExceptionReporter();
33
        $this->matcherRegistrars[] = new DefaultPackageRegistrar();
34
    }
35
}
36