| 1 | <?php |
||
| 25 | class Config extends Component implements BootstrapInterface, ConfigInterface |
||
| 26 | { |
||
| 27 | protected $_name; |
||
| 28 | |||
| 29 | protected $_authors = []; |
||
| 30 | |||
| 31 | public $configFile = 'chkipper.json'; |
||
| 32 | |||
| 33 | public $historyFile = 'history.md'; |
||
| 34 | |||
| 35 | public $changelogFile = 'CHANGELOG.md'; |
||
| 36 | |||
| 37 | public function bootstrap($app) |
||
| 45 | |||
| 46 | public function setName($name) |
||
| 50 | |||
| 51 | public function getName() |
||
| 55 | |||
| 56 | public function setAuthors(array $authors) |
||
| 60 | |||
| 61 | public function getAuthors() |
||
| 65 | } |
||
| 66 |