Completed
Push — master ( 64a1ae...3862ca )
by Andrii
09:18
created

Config   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 8
ccs 0
cts 3
cp 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A bootstrap() 0 3 1
1
<?php
2
3
/*
4
 * Changelog keeper
5
 *
6
 * @link      https://github.com/hiqdev/chkipper
7
 * @package   chkipper
8
 * @license   BSD-3-Clause
9
 * @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
10
 */
11
12
namespace hiqdev\chkipper\components;
13
14
use yii\base\Component;
15
use yii\base\BootstrapInterface;
16
17
/**
18
 * Config class.
19
 * Loads and holds configuration.
20
 *
21
 * @author Andrii Vasyliev <[email protected]>
22
 */
23
class Config extends Component implements BootstrapInterface
24
{
25
    public $historyFile = 'history.md';
26
27
    public function bootstrap($app)
28
    {
29
    }
30
}
31