docs: add ignore tag to isPaymentProcessor (#6410)

- Add ignore tags to `isPaymentProcessor` method and property
- Generate payment reference to move the associated section.
This commit is contained in:
Shahed Nasser
2024-02-16 12:51:14 +00:00
committed by GitHub
parent 35a4db29b7
commit 0d68eadf84
4 changed files with 12 additions and 77 deletions
@@ -676,8 +676,14 @@ export abstract class AbstractPaymentProcessor implements PaymentProcessor {
protected readonly config?: Record<string, unknown> // eslint-disable-next-line @typescript-eslint/no-empty-function
) {}
/**
* @ignore
*/
static _isPaymentProcessor = true
/**
* @ignore
*/
static isPaymentProcessor(object): boolean {
return object?.constructor?._isPaymentProcessor
}