Skip to content

Commit

Permalink
Changed identifiers from “int” to “string” to avoid confusion and err…
Browse files Browse the repository at this point in the history
…ors with scanning tools like PHPStan
  • Loading branch information
garsaud committed Oct 18, 2022
1 parent b741f27 commit 5de2656
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion MangoPay/PayIn.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class PayIn extends Transaction
{
/**
* Credited wallet Id
* @var int
* @var string
*/
public $CreditedWalletId;

Expand Down
6 changes: 6 additions & 0 deletions MangoPay/PayInExecutionDetailsDirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ class PayInExecutionDetailsDirect extends Libraries\Dto implements PayInExecutio
*/
public $Applied3DSVersion;

/**
* Card Id
* @var string
*/
public $CardId;

public function GetSubObjects()
{
$subObjects = parent::GetSubObjects();
Expand Down

0 comments on commit 5de2656

Please sign in to comment.