Skip to content

Commit 31673f0

Browse files
SushmitaThakursushmita
andauthored
[ECP-9272] Allow Application Info in request parameters for modifications (#674)
* [ECP-9272] Allow Application Info in request params for Cancels, Refunds, and Captures * [ECP-9272] Allow Application Info in request params for Reversals --------- Co-authored-by: sushmita <[email protected]>
1 parent da69b2f commit 31673f0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Adyen/Service/ResourceModel/Checkout/Cancels.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Cancels extends \Adyen\Service\AbstractCheckoutResource
1414
*
1515
* @var bool
1616
*/
17-
protected $allowApplicationInfo = false;
17+
protected $allowApplicationInfo = true;
1818

1919
/**
2020
* Payments constructor.

src/Adyen/Service/ResourceModel/Checkout/Captures.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Captures extends \Adyen\Service\AbstractCheckoutResource
1414
*
1515
* @var bool
1616
*/
17-
protected $allowApplicationInfo = false;
17+
protected $allowApplicationInfo = true;
1818

1919
/**
2020
* Payments constructor.

src/Adyen/Service/ResourceModel/Checkout/Refunds.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Refunds extends \Adyen\Service\AbstractCheckoutResource
1414
*
1515
* @var bool
1616
*/
17-
protected $allowApplicationInfo = false;
17+
protected $allowApplicationInfo = true;
1818

1919
/**
2020
* Payments constructor.

src/Adyen/Service/ResourceModel/Checkout/Reversals.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Reversals extends \Adyen\Service\AbstractCheckoutResource
1414
*
1515
* @var bool
1616
*/
17-
protected $allowApplicationInfo = false;
17+
protected $allowApplicationInfo = true;
1818

1919
/**
2020
* Payments constructor.

0 commit comments

Comments
 (0)