Skip to content

Commit

Permalink
fix CreateBasketRequest not having jsonbody trait
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdrakedennis committed Mar 31, 2023
1 parent 7ee7d01 commit 2deee89
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Requests/Baskets/CreateBasketRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
use Saloon\Contracts\Body\HasBody;
use Saloon\Enums\Method;
use Saloon\Http\Request;
use Saloon\Traits\Body\HasJsonBody;

class CreateBasketRequest extends Request implements HasBody
{
use \Saloon\Traits\Body\HasBody;
use HasJsonBody;

public function __construct(
protected string $returnUrl,
Expand Down

0 comments on commit 2deee89

Please sign in to comment.