woocommerce-paypal-payments/tests/stubs/WC_Payment_Gateway_CC.php

13 lines
214 B
PHP
Raw Normal View History

2021-03-03 11:50:27 +01:00
<?php
declare(strict_types=1);
class WC_Payment_Gateway_CC
{
public function init_settings() {}
public function process_admin_options() {}
2021-03-03 11:50:27 +01:00
2022-08-16 11:06:18 +02:00
protected function get_return_url($wcOrder) {
return $wcOrder;
}
2021-03-03 11:50:27 +01:00
}