diff --git a/src/Endpoints/OrdersEndpoint.php b/src/Endpoints/OrdersEndpoint.php index 8c7f9738..2e109990 100644 --- a/src/Endpoints/OrdersEndpoint.php +++ b/src/Endpoints/OrdersEndpoint.php @@ -37,7 +37,7 @@ public function get(int $id): Models\Resource\Orders */ public function update(int $id, Models\Orders\Patch $model, bool $onlyFilled = true): void { - $this->doRequest(self::PATCH, sprintf('orders/%d' . $id), $model->toArray($onlyFilled)); + $this->doRequest(self::PATCH, sprintf('orders/%d', $id), $model->toArray($onlyFilled)); } /**