We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c773f6a commit 86cb041Copy full SHA for 86cb041
src/CodeCoverage/Report/HTML/Renderer/Dashboard.php
@@ -175,7 +175,7 @@ protected function coverageDistribution(array $classes)
175
);
176
177
foreach ($classes as $class) {
178
- foreach ($class['methods'] as $methodName => $method) {
+ foreach ($class['methods'] as $method) {
179
if ($method['coverage'] == 0) {
180
$result['method']['0%']++;
181
} elseif ($method['coverage'] == 100) {
@@ -318,6 +318,10 @@ protected function projectRisks(array $classes)
318
return $result;
319
}
320
321
+ /**
322
+ * @param PHP_CodeCoverage_Report_Node $node
323
+ * @return string
324
+ */
325
protected function getActiveBreadcrumb(PHP_CodeCoverage_Report_Node $node)
326
{
327
return sprintf(
0 commit comments