public function registerPaymentGateways()
{
return [
\Igniter\payregister\Payments\WechatPay::class => [
‘code’ => ‘wechatpay’,
‘name’ => ‘wechatpay’,
‘description’ => ‘Description of the payment gateway’,
],
\Igniter\payregister\Payments\Alipay::class => [
‘code’ => ‘alipay’,
‘name’ => ‘alipay’,
‘description’ => ‘Description of the payment gateway’,
]
];
}
Is that right?