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

Config::getAuthors()   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
c 1
b 1
f 0
dl 0
loc 4
rs 10
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\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