Skip to content

Commit 085f525

Browse files
committed
fix(Impact/Usage/AbstractUsageImpact): useless argument in method call
1 parent 864ca8e commit 085f525

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Impact/Usage/AbstractUsageImpact.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ public function evaluateItems(DBmysqlIterator $iterator): int
135135
/** @var int $count count of successfully evaluated assets */
136136
$count = 0;
137137
foreach ($iterator as $row) {
138-
if ($this->evaluateItem($row['id'])) {
138+
if ($this->evaluateItem()) {
139139
$count++;
140140
}
141141
$attempts_count++;

0 commit comments

Comments
 (0)