rebase on oct-10-2023

This commit is contained in:
Rachit Bhargava
2023-10-10 17:23:21 -04:00
parent d37566ffb6
commit d096058d7d
4789 changed files with 254611 additions and 307223 deletions

View File

@@ -35,6 +35,42 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
*/
public static $log = false;
/**
* Whether the test mode is enabled.
*
* @var bool
*/
public $testmode;
/**
* Whether the debug mode is enabled.
*
* @var bool
*/
public $debug;
/**
* Email address to send payments to.
*
* @var string
*/
public $email;
/**
* Receiver email.
*
* @var string
*/
public $receiver_email;
/**
* Identity token.
*
* @var string
*/
public $identity_token;
/**
* Constructor for the gateway.
*/