From dbb3623bd1a556073c697a6cd0f03f4d2f213f69 Mon Sep 17 00:00:00 2001 From: Iulian Masar Date: Mon, 29 Aug 2022 17:06:26 +0300 Subject: [PATCH] fixed linter --- MangoPay/ApiPayOuts.php | 10 ++++++++-- MangoPay/ApiRegulatory.php | 2 +- MangoPay/InstantPayout.php | 2 +- MangoPay/PayOutEligibilityRequest.php | 2 +- MangoPay/PayOutEligibilityResponse.php | 1 - 5 files changed, 11 insertions(+), 6 deletions(-) diff --git a/MangoPay/ApiPayOuts.php b/MangoPay/ApiPayOuts.php index 0a4639db..c0edfcb6 100644 --- a/MangoPay/ApiPayOuts.php +++ b/MangoPay/ApiPayOuts.php @@ -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 + ); } /** diff --git a/MangoPay/ApiRegulatory.php b/MangoPay/ApiRegulatory.php index 5a93df04..ef1895e4 100644 --- a/MangoPay/ApiRegulatory.php +++ b/MangoPay/ApiRegulatory.php @@ -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); } -} \ No newline at end of file +} diff --git a/MangoPay/InstantPayout.php b/MangoPay/InstantPayout.php index 134ba1e1..cc63c722 100644 --- a/MangoPay/InstantPayout.php +++ b/MangoPay/InstantPayout.php @@ -13,4 +13,4 @@ class InstantPayout * @var FallbackReason */ public $UnreachableReason; -} \ No newline at end of file +} diff --git a/MangoPay/PayOutEligibilityRequest.php b/MangoPay/PayOutEligibilityRequest.php index 532abb6f..32b6fcbc 100644 --- a/MangoPay/PayOutEligibilityRequest.php +++ b/MangoPay/PayOutEligibilityRequest.php @@ -50,4 +50,4 @@ class PayOutEligibilityRequest extends Dto * @var string */ public $PayoutModeRequested; -} \ No newline at end of file +} diff --git a/MangoPay/PayOutEligibilityResponse.php b/MangoPay/PayOutEligibilityResponse.php index 572bec01..0c809500 100644 --- a/MangoPay/PayOutEligibilityResponse.php +++ b/MangoPay/PayOutEligibilityResponse.php @@ -11,4 +11,3 @@ class PayOutEligibilityResponse extends Dto */ public $InstantPayout; } -