Stub required fields for custom payment drivers

This commit is contained in:
David Bomba 2023-02-06 09:06:42 +11:00
parent 80c1d0b2eb
commit af8ea65b33

View File

@ -106,4 +106,9 @@ class CustomPaymentDriver extends BaseDriver
{
// Driver doesn't support this feature.
}
public function getClientRequiredFields(): array
{
return [];
}
}