Add card button gateway

This commit is contained in:
Alex P 2022-07-19 09:20:26 +03:00
parent 0ff11054f8
commit d4e8bd453c
15 changed files with 454 additions and 31 deletions

View file

@ -4,7 +4,7 @@ declare(strict_types=1);
class WC_Payment_Gateway
{
protected function get_option(string $key) : string {
public function get_option(string $key, $empty_value = null) {
return $key;
}
@ -19,4 +19,4 @@ class WC_Payment_Gateway
public function process_admin_options() {
}
}
}