mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 12:25:15 +08:00
🐛 Fix fatal error in derived REST classes
This commit is contained in:
parent
d85d802169
commit
8e19b6b804
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ class CommonRestEndpoint extends RestEndpoint {
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected string $rest_base = 'common';
|
protected $rest_base = 'common';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The settings instance.
|
* The settings instance.
|
||||||
|
|
|
@ -23,7 +23,7 @@ class LoginLinkRestEndpoint extends RestEndpoint {
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected string $rest_base = 'login_link';
|
protected $rest_base = 'login_link';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Link generator list, with environment name as array key.
|
* Link generator list, with environment name as array key.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue