Skip to content

Commit

Permalink
fixed linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Iulian Masar committed Aug 29, 2022
1 parent 8bd9e52 commit dbb3623
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
10 changes: 8 additions & 2 deletions MangoPay/ApiPayOuts.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,14 @@ public function Create($payOut, $idempotencyKey = null)
*/
public function CheckInstantPayoutEligibility($payOutEligibility, $idempotencyKey = null)
{
return $this->CreateObject('payouts_check_eligibility', $payOutEligibility,
'\MangoPay\PayOutEligibilityResponse', null, null, $idempotencyKey);
return $this->CreateObject(
'payouts_check_eligibility',
$payOutEligibility,
'\MangoPay\PayOutEligibilityResponse',
null,
null,
$idempotencyKey
);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion MangoPay/ApiRegulatory.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ public function GetAllCountryAuthorizations(& $pagination = null, $sorting = nul
{
return $this->GetList('country_authorization_all', $pagination, 'MangoPay\CountryAuthorization', null, null, $sorting, null, false);
}
}
}
2 changes: 1 addition & 1 deletion MangoPay/InstantPayout.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ class InstantPayout
* @var FallbackReason
*/
public $UnreachableReason;
}
}
2 changes: 1 addition & 1 deletion MangoPay/PayOutEligibilityRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ class PayOutEligibilityRequest extends Dto
* @var string
*/
public $PayoutModeRequested;
}
}
1 change: 0 additions & 1 deletion MangoPay/PayOutEligibilityResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@ class PayOutEligibilityResponse extends Dto
*/
public $InstantPayout;
}

0 comments on commit dbb3623

Please sign in to comment.