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

Config::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
dl 0
loc 4
rs 10
c 1
b 1
f 0
cc 1
eloc 2
nc 1
nop 0
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