Skip to content

Commit

Permalink
Merge pull request #156 from checkout/release/2.5.3
Browse files Browse the repository at this point in the history
Release 2.5.3
  • Loading branch information
martinseco committed Jul 27, 2022
2 parents f88e89a + e4a641a commit d1c012d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Checkout/CheckoutUtils.php
Expand Up @@ -9,7 +9,7 @@ class CheckoutUtils
{

const PROJECT_NAME = "checkout-sdk-php";
const PROJECT_VERSION = "2.5.2";
const PROJECT_VERSION = "2.5.3";

/**
* @param DateTime $date
Expand Down
Expand Up @@ -39,6 +39,7 @@ public function before()
*/
public function shouldUpdateAndRetrieveWeeklyPayoutSchedules()
{
$this->markTestSkipped("unavailable");
$weeklyRequest = new ScheduleFrequencyWeeklyRequest();
$weeklyRequest->by_day = [DaySchedule::$FRIDAY, DaySchedule::$MONDAY];

Expand Down Expand Up @@ -77,6 +78,7 @@ public function shouldUpdateAndRetrieveWeeklyPayoutSchedules()
*/
public function shouldUpdateAndRetrieveDailyPayoutSchedules()
{
$this->markTestSkipped("unavailable");
$dailyRequest = new ScheduleFrequencyDailyRequest();

$scheduleRequest = new UpdateScheduleRequest();
Expand Down Expand Up @@ -112,6 +114,7 @@ public function shouldUpdateAndRetrieveDailyPayoutSchedules()
*/
public function shouldUpdateAndRetrieveMonthlyPayoutSchedules()
{
$this->markTestSkipped("unavailable");
$monthlyRequest = new ScheduleFrequencyMonthlyRequest();
$monthlyRequest->by_month_day = [10, 5];

Expand Down
2 changes: 1 addition & 1 deletion version.json
@@ -1,3 +1,3 @@
{
"version": "2.5.2"
"version": "2.5.3"
}

0 comments on commit d1c012d

Please sign in to comment.