Total Complexity | 9 |
Total Lines | 41 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
20 | class AddTagLinks extends AbstractModifier |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | 2 | public function run(History $history) |
|
34 | 2 | } |
|
35 | 2 | } |
|
36 | |||
37 | /** |
||
38 | * Generate href to a version tag. |
||
39 | * @param History $history history object |
||
40 | * @param string $prev previous tag |
||
41 | * @param string $curr current tag |
||
42 | * @return string |
||
43 | */ |
||
44 | 2 | public function generateTagHref(History $history, $prev, $curr) |
|
63 |