woocommerce-paypal-payments/tests/stubs/WC_Payment_Gateway.php
2020-04-29 08:58:16 +03:00

22 lines
No EOL
331 B
PHP

<?php
declare(strict_types=1);
class WC_Payment_Gateway
{
protected function get_option(string $key) : string {
return $key;
}
protected function init_settings() {
}
protected function get_return_url($wcOrder) {
return $wcOrder;
}
public function process_admin_options() {
}
}