Skip to content

Commit

Permalink
Added 'valid=1' parameter to listJoueursByClub to filter only players…
Browse files Browse the repository at this point in the history
… with valid licenses
  • Loading branch information
sjea committed Dec 21, 2024
1 parent 6fcb4e8 commit 4202e32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service/Operation/ListJoueurOperation.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function listJoueursByClub(string $clubId): array
{
try {
$arrayJoueurs = $this->client->get('xml_liste_joueur_o', [
'club' => $clubId,
'club' => $clubId, 'valid' => 1,
]
);
} catch (InvalidResponseException) {
Expand Down

0 comments on commit 4202e32

Please sign in to comment.