From 2e4f5858579ced10237e8afda6665fab82ab9fef Mon Sep 17 00:00:00 2001 From: Seth Sharp Date: Sat, 5 Oct 2024 11:31:00 +1000 Subject: [PATCH] fix --- src/OddsClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OddsClient.php b/src/OddsClient.php index 4bc3ea3..5b67594 100644 --- a/src/OddsClient.php +++ b/src/OddsClient.php @@ -153,7 +153,7 @@ public function setBookmakers(mixed $bookmakers): self $bookmakerString = http_build_query($bookmakers, '', ','); } - $this->params['markets'] = $bookmakerString ?? $bookmakers; + $this->params['bookmakers'] = $bookmakerString ?? $bookmakers; return $this; }