You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A gateway that redirects offsite doesn't have to implement authorize and purchase in pairs of authorize + completeAuthorize and purchase + completePurchase. It's possible that a Gateway might omit the complete… methods, if there's no data coming back from the offsite request.
Implementation of AuthorizeService and PurchaseService needs to check supportsCompleteAuthorize and supportsCompletePurchase respectively during initiate and complete the action immediately, if the complete… method isn't implmented.
A gateway that redirects offsite doesn't have to implement
authorize
andpurchase
in pairs ofauthorize
+completeAuthorize
andpurchase
+completePurchase
. It's possible that a Gateway might omit thecomplete…
methods, if there's no data coming back from the offsite request.Implementation of
AuthorizeService
andPurchaseService
needs to checksupportsCompleteAuthorize
andsupportsCompletePurchase
respectively duringinitiate
and complete the action immediately, if thecomplete…
method isn't implmented.Reference: thephpleague/omnipay-paypal#170 (comment)
The text was updated successfully, but these errors were encountered: