woocommerce-paypal-payments/tests/stubs/WC_Payment_Gateway_CC.php
2025-01-14 15:21:34 +01:00

14 lines
225 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;
}
}