for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Changelog keeper
*
* @link https://github.com/hiqdev/chkipper
* @package chkipper
* @license BSD-3-Clause
* @copyright Copyright (c) 2016, HiQDev (http://hiqdev.com/)
*/
namespace hiqdev\chkipper\components;
use yii\base\Component;
use yii\base\BootstrapInterface;
/**
* Config class.
* Loads and holds configuration.
* @author Andrii Vasyliev <[email protected]>
class Config extends Component implements BootstrapInterface
{
public $historyFile = 'history.md';
public function bootstrap($app)
}