Completed
Push — master ( cefe8d...0ca202 )
by Andrii
03:36
created

Config   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
1
<?php
2
/**
3
 * Changelog keeper
4
 *
5
 * @link      https://github.com/hiqdev/chkipper
6
 * @package   chkipper
7
 * @license   BSD-3-Clause
8
 * @copyright Copyright (c) 2016-2017, HiQDev (http://hiqdev.com/)
9
 */
10
11
namespace hiqdev\chkipper\tests\unit\history;
12
13
use hiqdev\chkipper\history\ConfigInterface;
14
15
/**
16
 * Simple config for tests.
17
 *
18
 * @author Andrii Vasyliev <[email protected]>
19
 */
20
class Config implements ConfigInterface
21
{
22
    public function getName()
23
    {
24
        return '';
25
    }
26
}
27