Skip to content

Commit

Permalink
fix CreateSaleRequest not having HasJsonBody trait
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdrakedennis committed Mar 31, 2023
1 parent 2deee89 commit 198aa26
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Requests/Baskets/Sales/CreateSaleRequest.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 CreateSaleRequest extends Request implements HasBody
{
use \Saloon\Traits\Body\HasBody;
use HasJsonBody;

public function __construct(
protected string $ident,
Expand Down

0 comments on commit 198aa26

Please sign in to comment.