>|null $snapshot */ public function oddsValueForScope(?array $snapshot, string $scope): int { if ($snapshot === null) { return 0; } foreach ($snapshot as $row) { if (($row['prize_scope'] ?? null) === $scope) { return (int) ($row['odds_value'] ?? 0); } } return 0; } }