Skip to content
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "buckaroo/sdk",
"description": "Buckaroo payment SDK",
"license": "MIT",
"version": "1.21.0",
"version": "1.21.1",
"type": "library",
"require": {
"php": ">=7.4|^8.0",
Expand Down
5 changes: 5 additions & 0 deletions src/PaymentMethods/Subscriptions/Models/RatePlanCharge.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@

class RatePlanCharge extends ServiceParameter
{
/**
* @var string
*/
protected string $ratePlanChargeGuid;

/**
* @var string
*/
Expand Down
2 changes: 1 addition & 1 deletion src/PaymentMethods/iDeal/Models/Pay.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@

class Pay extends ServiceParameter
{
protected string $issuer;
protected ?string $issuer = null;
protected string $shippingCost;
}