Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
ChangelogHelper | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
getChangelogPath | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 |
1 | <?php |
2 | |
3 | namespace BO\Zmsadmin\Helper; |
4 | |
5 | use BO\Slim\Helper\BaseChangelogHelper; |
6 | |
7 | class ChangelogHelper extends BaseChangelogHelper |
8 | { |
9 | protected function getChangelogPath(): string |
10 | { |
11 | return __DIR__ . '/../../../changelog_build.md'; |
12 | } |
13 | } |