is this really thread resolved?
got a very similar issue here:
Fatal error: Uncaught TypeError: Unsupported operand types: int + string in /wp-content/plugins/sportspress/includes/class-sp-league-table.php:396 Stack
running with PHP v8.3.
(int) $totals[ $team_id ]['eventminutes'] + $minutes
there is happening some type casting for the one int
type var and for the concatenated string type var not.
type strictness is an issue now!
so what could get done in between is just casting the second string var too and hope it’s correct without understanding the whole thing behind ??
(int) $totals[ $team_id ]['eventminutes'] + (int) $minutes
and then hope the next update will fix it.