-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/develop' into develop
- Loading branch information
Showing
51 changed files
with
2,491 additions
and
564 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
/** | ||
* | ||
* Adyen ExpressCheckout Module | ||
* | ||
* Copyright (c) 2024 Adyen N.V. | ||
* This file is open source and available under the MIT license. | ||
* See the LICENSE file for more info. | ||
* | ||
* Author: Adyen <magento@adyen.com> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Adyen\ExpressCheckout\Api; | ||
|
||
interface AdyenInitPaymentsInterface | ||
{ | ||
const PAYMENT_CHANNEL_WEB = 'web'; | ||
|
||
/** | ||
* @param string $stateData | ||
* @param int|null $adyenCartId | ||
* @param string|null $adyenMaskedQuoteId | ||
* @return string | ||
*/ | ||
public function execute( | ||
string $stateData, | ||
?int $adyenCartId = null, | ||
?string $adyenMaskedQuoteId = null | ||
): string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
/** | ||
* | ||
* Adyen ExpressCheckout Module | ||
* | ||
* Copyright (c) 2024 Adyen N.V. | ||
* This file is open source and available under the MIT license. | ||
* See the LICENSE file for more info. | ||
* | ||
* Author: Adyen <magento@adyen.com> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Adyen\ExpressCheckout\Api; | ||
|
||
interface AdyenPaypalUpdateOrderInterface | ||
{ | ||
/** | ||
* @param string $paymentData | ||
* @param int|null $adyenCartId | ||
* @param string|null $adyenMaskedQuoteId | ||
* @param string $deliveryMethods | ||
* @return mixed | ||
*/ | ||
public function execute( | ||
string $paymentData, | ||
?int $adyenCartId = null, | ||
?string $adyenMaskedQuoteId = null, | ||
string $deliveryMethods = '' | ||
): string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
/** | ||
* | ||
* Adyen ExpressCheckout Module | ||
* | ||
* Copyright (c) 2024 Adyen N.V. | ||
* This file is open source and available under the MIT license. | ||
* See the LICENSE file for more info. | ||
* | ||
* Author: Adyen <magento@adyen.com> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Adyen\ExpressCheckout\Api; | ||
|
||
interface GuestAdyenInitPaymentsInterface | ||
{ | ||
/** | ||
* @param string $stateData | ||
* @param string|null $guestMaskedId | ||
* @param string|null $adyenMaskedQuoteId | ||
* @return string | ||
*/ | ||
public function execute( | ||
string $stateData, | ||
?string $guestMaskedId = null, | ||
?string $adyenMaskedQuoteId = null | ||
): string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
/** | ||
* | ||
* Adyen ExpressCheckout Module | ||
* | ||
* Copyright (c) 2024 Adyen N.V. | ||
* This file is open source and available under the MIT license. | ||
* See the LICENSE file for more info. | ||
* | ||
* Author: Adyen <magento@adyen.com> | ||
*/ | ||
declare(strict_types=1); | ||
|
||
namespace Adyen\ExpressCheckout\Api; | ||
|
||
interface GuestAdyenPaypalUpdateOrderInterface | ||
{ | ||
/** | ||
* @param string $paymentData | ||
* @param string|null $guestMaskedId | ||
* @param string|null $adyenMaskedQuoteId | ||
* @param string $deliveryMethods | ||
* @return mixed | ||
*/ | ||
public function execute( | ||
string $paymentData, | ||
?string $guestMaskedId = null, | ||
?string $adyenMaskedQuoteId = null, | ||
string $deliveryMethods = '' | ||
): string; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.