Skip to content

Commit

Permalink
Release 3.0.20 (#232)
Browse files Browse the repository at this point in the history
- Add custom guzzle client configuration support
  • Loading branch information
armando-rodriguez-cko authored Jan 10, 2024
1 parent 064c383 commit 4310ef9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/Checkout/CheckoutUtils.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class CheckoutUtils
{

const PROJECT_NAME = "checkout-sdk-php";
const PROJECT_VERSION = "3.0.19";
const PROJECT_VERSION = "3.0.20";

/**
* @param DateTime $date
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,10 @@ public function shouldQueryDisputes()
$this->assertResponse(
$response,
"limit",
"total_count",
"from",
"to"
);
if (array_key_exists("data", $response)) {
if (!empty($response["data"])) {
$disputeDetails = $response["data"]["0"];
$this->assertResponse(
$disputeDetails,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -744,6 +744,7 @@ public function shouldMakeCvConnectPayment()
*/
public function shouldMakeSepaPayment()
{
$this->markTestSkipped("unavailable");
$requestSource = new RequestSepaSource();
$requestSource->country = Country::$ES;
$requestSource->currency = Currency::$EUR;
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"version": "3.0.19"
"version": "3.0.20"
}

0 comments on commit 4310ef9

Please sign in to comment.