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

23 lines
340 B
PHP
Raw Normal View History

2020-04-28 15:03:25 +03:00
<?php
declare(strict_types=1);
class WC_Payment_Gateway
{
2022-07-19 09:20:26 +03:00
public function get_option(string $key, $empty_value = null) {
2020-04-29 08:58:16 +03:00
return $key;
}
protected function init_settings() {
}
2022-08-16 11:01:13 +02:00
protected function get_return_url($order = null) {
return '';
2020-04-29 08:58:16 +03:00
}
public function process_admin_options() {
}
2022-07-19 09:20:26 +03:00
}