Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdrakedennis authored and github-actions[bot] committed Mar 31, 2023
1 parent ce2b2bc commit 7fcabd5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion src/Data/Requests/BasketData.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ public function __construct(
public string|Optional $first_name,
public string|Optional $last_name,
public string|Optional $email
){}
) {
}

public function toArrayWithFilledProps(): array
{
Expand Down
3 changes: 2 additions & 1 deletion src/Data/Requests/ItemData.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ public function __construct(
public int|Optional $qty,
public array|Optional $revenue_share,
public SaleData|Optional $sale,
){}
) {
}
}
3 changes: 2 additions & 1 deletion src/Data/Requests/PackageData.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ public function __construct(
public int|Optional $qty,
public PackageType $type,
public array|Optional $revenue_share,
){}
) {
}
}
3 changes: 2 additions & 1 deletion src/Data/Requests/SaleData.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ public function __construct(
public string $name,
public SaleDiscountType $discount_type,
public float $amount,
){}
) {
}
}

0 comments on commit 7fcabd5

Please sign in to comment.