mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
22 lines
341 B
PHP
22 lines
341 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
class WC_Payment_Gateway
|
|
{
|
|
|
|
public function get_option(string $key, $empty_value = null) {
|
|
return $key;
|
|
}
|
|
|
|
protected function init_settings() {
|
|
|
|
}
|
|
|
|
protected function get_return_url($wcOrder) {
|
|
return $wcOrder;
|
|
}
|
|
|
|
public function process_admin_options() {
|
|
|
|
}
|
|
}
|