Skip to content

Commit

Permalink
Ideal Payment Update (CS2). Sessions Authentication Type Update (#252)
Browse files Browse the repository at this point in the history
* Update auth type sessions

* Update Ideal payment request
  • Loading branch information
armando-rodriguez-cko committed May 8, 2024
1 parent 417a7a4 commit 9b5cd0b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@ public function __construct()
parent::__construct(PaymentSourceType::$ideal);
}

/**
* @var string
*/
public $bic;

/**
* @var string
*/
Expand Down
3 changes: 3 additions & 0 deletions lib/Checkout/Sessions/AuthenticationType.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ final class AuthenticationType
{
public static $regular = "regular";
public static $recurring = "recurring";
public static $installment = "installment";
public static $maintain_card = "maintain_card";
public static $add_card = "add_card";
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public function shouldMakeAliPayPayment()
*/
public function shouldMakeIdealPayment()
{
$this->markTestSkipped("unavailable");
$requestSource = new RequestIdealSource();
$requestSource->bic = "INGBNL2A";
$requestSource->description = "ORD50234E89";
$requestSource->language = "nl";

Expand Down

0 comments on commit 9b5cd0b

Please sign in to comment.