Skip to content

Commit

Permalink
added null as possible type to paymenttoken
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjanovic committed Jul 4, 2023
1 parent df64bf8 commit ea9867b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Data/CustomerProfileData.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class CustomerProfileData extends DataObject {
protected $customerIdentification;

/**
* @var string
* @var string|null
*/
protected $paymentToken;

Expand Down Expand Up @@ -70,7 +70,7 @@ public function setCustomerIdentification($customerIdentification)
}

/**
* @return string
* @return string|null
*/
public function getPaymentToken()
{
Expand Down

0 comments on commit ea9867b

Please sign in to comment.