mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
Fix stub method
This commit is contained in:
parent
03fa159b43
commit
ce67d78011
2 changed files with 4 additions and 4 deletions
|
@ -12,8 +12,8 @@ class WC_Payment_Gateway
|
|||
|
||||
}
|
||||
|
||||
protected function get_return_url($wcOrder) {
|
||||
return $wcOrder;
|
||||
protected function get_return_url($order = null) {
|
||||
return '';
|
||||
}
|
||||
|
||||
public function process_admin_options() {
|
||||
|
|
|
@ -6,7 +6,7 @@ class WC_Payment_Gateway_CC
|
|||
public function init_settings() {}
|
||||
public function process_admin_options() {}
|
||||
|
||||
protected function get_return_url($wcOrder) {
|
||||
return $wcOrder;
|
||||
protected function get_return_url($order = null) {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue