Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ECP-8977]Deprecate classes that are no longer used #2848

Merged
merged 2 commits into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Model/Api/PaymentRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
* See LICENSE.txt for license details.
*
* Author: Adyen <[email protected]>
* @deprecated This class is deprecated and will be removed in a future release.
* Use an alternative service or class for similar requests.
*/

namespace Adyen\Payment\Model\Api;
Expand Down Expand Up @@ -87,8 +89,10 @@ public function __construct(
}

/**
* @deprecated This method is deprecated and will be removed in a future release.
*
* @param Payment $payment
* @return mixed
* @return array
* @throws LocalizedException
* @throws NoSuchEntityException
*/
Expand Down Expand Up @@ -134,6 +138,7 @@ public function authorise3d(Payment $payment): array
}

/**
* @deprecated This method is redundant and no more used with the current flow. Will be deleted in the future releases.
* @param string $shopperReference
* @param int $storeId
* @return array
Expand Down Expand Up @@ -182,6 +187,7 @@ public function getRecurringContractsForShopper(string $shopperReference, int $s
}

/**
* @deprecated This method is a part of deprecated parent and will be removed in the future releases.
* @param string $shopperReference
* @param int $storeId
* @param string $recurringType
Expand All @@ -208,6 +214,7 @@ public function listRecurringContractByType(string $shopperReference, int $store
}

/**
* @deprecated This method is redundant and will be removed in the coming major release.
* @param string $recurringDetailReference
* @param string $shopperReference
* @param int $storeId
Expand Down
Loading