Setup future usage

This commit is contained in:
Sebastian Rindom
2020-07-13 17:35:50 +02:00
parent eeae2a056c
commit cd989c56a7
20 changed files with 282 additions and 26 deletions
@@ -65,6 +65,14 @@ class BasePaymentService extends BaseService {
deletePayment() {
throw Error("deletePayment must be overridden by the child class")
}
/**
* If the payment provider can save a payment method this function will
* retrieve them.
*/
retrieveSavedMethods(customer) {
return Promise.resolve([])
}
}
export default BasePaymentService