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

Config::bootstrap()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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