Completed
Push — master ( b28524...0419fd )
by Andrii
02:00
created

Config   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getName() 0 4 1
A getAuthors() 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\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