DefaultPackageRegistrar::registerTo()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 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\MatcherRegistry;
14
use expect\PackageRegistrar;
15
16
/**
17
 * Default package registrar
18
 *
19
 * @author Noritaka Horio <[email protected]>
20
 * @copyright Noritaka Horio <[email protected]>
21
 */
22
final class DefaultPackageRegistrar implements PackageRegistrar
23
{
24
    /**
25
     * {@inheritdoc}
26
     */
27
    public function registerTo(MatcherRegistry $registry)
28
    {
29
        $package = new DefaultMatcherPackage();
30
        $package->registerTo($registry);
31
    }
32
}
33