Skip to content

Commit

Permalink
Fix: getCollected to getSummary (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
nahakyuu authored Jan 19, 2024
1 parent cfec2ef commit c275265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Storage/FileStorage.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ private function collectSummaryData(): array

foreach ($this->collectors as $collector) {
if ($collector instanceof SummaryCollectorInterface) {
$summaryData = [...$summaryData, ...$collector->getCollected()];
$summaryData = [...$summaryData, ...$collector->getSummary()];
}
}

Expand Down

0 comments on commit c275265

Please sign in to comment.