Skip to content

Commit ae12ff9

Browse files
GrotaxCopilot
andauthored
Update src/FeedIo/Reader/Result/UpdateStats.php
Co-authored-by: Copilot <[email protected]>
1 parent 0a649af commit ae12ff9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FeedIo/Reader/Result/UpdateStats.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ public function getAverageInterval(): int
150150
$lower_bound = $q1 - 1.5 * $iqr;
151151
$upper_bound = $q3 + 1.5 * $iqr;
152152

153-
$result = array_filter($intervals, function($value) use ($lower_bound, $upper_bound) {
153+
$result = array_filter($intervals, function(int $value) use ($lower_bound, $upper_bound) {
154154
return $value >= $lower_bound && $value <= $upper_bound;
155155
});
156156

0 commit comments

Comments
 (0)