File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/CodeCoverage/Report/HTML/Renderer Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -249,9 +249,10 @@ protected function insufficientCoverage(array $classes)
249249 list ($ class , $ method ) = explode (':: ' , $ methodName );
250250
251251 $ result ['method ' ] .= sprintf (
252- ' <tr><td><a href="http://github.com/%s">%s </a></td><td class="text-right">%d%%</td></tr> ' . "\n" ,
252+ ' <tr><td><a href="http://github.com/%s"><abbr title="%s">%s</a> </a></td><td class="text-right">%d%%</td></tr> ' . "\n" ,
253253 $ classes [$ class ]['methods ' ][$ method ]['link ' ],
254254 $ methodName ,
255+ $ method ,
255256 $ coverage
256257 );
257258 }
@@ -307,9 +308,10 @@ protected function projectRisks(array $classes)
307308 list ($ class , $ method ) = explode (':: ' , $ methodName );
308309
309310 $ result ['method ' ] .= sprintf (
310- ' <tr><td><a href="http://github.com/%s">%s </a></td><td class="text-right">%d</td></tr> ' . "\n" ,
311+ ' <tr><td><a href="http://github.com/%s"><abbr title="%s">%s</abbr> </a></td><td class="text-right">%d</td></tr> ' . "\n" ,
311312 $ classes [$ class ]['methods ' ][$ method ]['link ' ],
312313 $ methodName ,
314+ $ method ,
313315 $ crap
314316 );
315317 }
You can’t perform that action at this time.
0 commit comments