remove blockonomics payment type

This commit is contained in:
David Bomba 2024-09-19 09:55:03 +10:00
parent 6f644f3070
commit 2aba873d16

View File

@ -81,7 +81,6 @@ class PaymentType extends StaticModel
public const STRIPE_BANK_TRANSFER = 50; public const STRIPE_BANK_TRANSFER = 50;
public const CASH_APP = 51; public const CASH_APP = 51;
public const PAY_LATER = 52; public const PAY_LATER = 52;
public const BLOCKONOMICS = 64;
public array $type_names = [ public array $type_names = [
self::BANK_TRANSFER => 'payment_type_Bank Transfer', self::BANK_TRANSFER => 'payment_type_Bank Transfer',
@ -130,7 +129,6 @@ class PaymentType extends StaticModel
self::CASH_APP => 'payment_type_Cash App', self::CASH_APP => 'payment_type_Cash App',
self::VENMO => 'payment_type_Venmo', self::VENMO => 'payment_type_Venmo',
self::PAY_LATER => 'payment_type_Pay Later', self::PAY_LATER => 'payment_type_Pay Later',
self::BLOCKONOMICS => 'payment_type_Blockonomics',
]; ];
public static function parseCardType($cardName) public static function parseCardType($cardName)