Skip to content

Commit

Permalink
Exclude Champions League, Europa League and World Cup from topscorers
Browse files Browse the repository at this point in the history
Exclude Champions League, Europa League and World Cup from topscorers
  • Loading branch information
sebastiaanspeck committed Oct 16, 2018
1 parent 42c3d8b commit 6ddc329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/SoccerAPI/SoccerAPIController.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function leaguesDetails($leagueId, Request $request)

$league = $soccerAPI->leagues()->setInclude($includeLeague)->byId($leagueId)->data;

$excludedLeagues = [2, 5, 732, 1326];
$excludedLeagues = [2, 5, 732];

$standingsRaw = $soccerAPI->standings()->bySeasonId($league->current_season_id);

Expand Down

0 comments on commit 6ddc329

Please sign in to comment.