Config   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getAuthors() 0 3 1
A getName() 0 3 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\lib;
12
13
use hiqdev\chkipper\lib\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
    public function getAuthors()
28
    {
29
        return [];
30
    }
31
}
32