Skip to content

Commit e03c9a3

Browse files
author
Marcel Hauri
committed
[fix] accept null for properties
1 parent 770d8ba commit e03c9a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

app/code/Magento/InstantPurchase/Model/InstantPurchaseOption.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,22 +20,22 @@
2020
class InstantPurchaseOption
2121
{
2222
/**
23-
* @var PaymentTokenInterface
23+
* @var PaymentTokenInterface|null
2424
*/
2525
private $paymentToken;
2626

2727
/**
28-
* @var Address
28+
* @var Address|null
2929
*/
3030
private $shippingAddress;
3131

3232
/**
33-
* @var Address
33+
* @var Address|null
3434
*/
3535
private $billingAddress;
3636

3737
/**
38-
* @var ShippingMethodInterface
38+
* @var ShippingMethodInterface|null
3939
*/
4040
private $shippingMethod;
4141

0 commit comments

Comments
 (0)