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 0a649af commit ae12ff9Copy full SHA for ae12ff9
src/FeedIo/Reader/Result/UpdateStats.php
@@ -150,7 +150,7 @@ public function getAverageInterval(): int
150
$lower_bound = $q1 - 1.5 * $iqr;
151
$upper_bound = $q3 + 1.5 * $iqr;
152
153
- $result = array_filter($intervals, function($value) use ($lower_bound, $upper_bound) {
+ $result = array_filter($intervals, function(int $value) use ($lower_bound, $upper_bound) {
154
return $value >= $lower_bound && $value <= $upper_bound;
155
});
156
0 commit comments