prefix}woocommerce_saving_cards ( `id` INT AUTO_INCREMENT, `registration_id` VARCHAR(255) NOT NULL, `customer_id` VARCHAR(255) NOT NULL, `mode` int (10) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=INNODB DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_520_ci;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); dbDelta($sql_raw, true); } /** * Merge the previous gateways with hyperPay gatways * * @param array $gateways * @return array $updated_gateways */ public static function get_gateways(array $gateways): array { return array_merge($gateways, self::$HP_gateways); } }