DefaultMatcherPackage   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
A registerTo() 0 8 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\package;
12
13
use expect\MatcherPackage;
14
use expect\MatcherRegistry;
15
use expect\RegisterablePackage;
16
17
/**
18
 * Default matcher package
19
 *
20
 * @author Noritaka Horio <[email protected]>
21
 * @copyright Noritaka Horio <[email protected]>
22
 */
23
final class DefaultMatcherPackage implements RegisterablePackage
24
{
25
    /**
26
     * @var string
27
     */
28
    private $matcherNamespace;
29
30
    /**
31
     * @var string
32
     */
33
    private $matcherDirectory;
34
35
    /**
36
     * Create a new matcher package
37
     */
38
    public function __construct()
39
    {
40
        $this->matcherNamespace = '\\expect\\matcher';
41
        $this->matcherDirectory = realpath(__DIR__ . '/../matcher');
42
    }
43
44
    /**
45
     * {@inheritdoc}
46
     */
47
    public function registerTo(MatcherRegistry $registry)
48
    {
49
        $matcherPackage = new MatcherPackage(
50
            $this->matcherNamespace,
51
            $this->matcherDirectory
52
        );
53
        $matcherPackage->registerTo($registry);
54
    }
55
}
56