mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
12 lines
214 B
PHP
12 lines
214 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
class WC_Payment_Gateway_CC
|
|
{
|
|
public function init_settings() {}
|
|
public function process_admin_options() {}
|
|
|
|
protected function get_return_url($wcOrder) {
|
|
return $wcOrder;
|
|
}
|
|
}
|