Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove declared properties accessed by magic getter in Paypal Config #2759

Merged
merged 2 commits into from
Nov 25, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
54 changes: 27 additions & 27 deletions app/code/core/Mage/Paypal/Model/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,33 @@
* @category Mage
* @package Mage_Paypal
* @author Magento Core Team <core@magentocommerce.com>
*
* @property mixed $allow_ba_signup;
* @property mixed $api_cert;
* @property mixed $api_password;
* @property mixed $api_signature;
* @property mixed $api_username;
* @property mixed $apiAuthentication;
* @property mixed $apiPassword;
* @property mixed $apiSignature;
* @property mixed $apiUsername;
* @property mixed $business_account;
* @property mixed $businessAccount;
* @property mixed $buttonFlavor;
* @property mixed $buttonType;
* @property mixed $cctypes;
* @property mixed $debug;
* @property mixed $lineItemsEnabled;
* @property mixed $lineItemsSummary;
* @property mixed $paymentAction;
* @property mixed $paymentMarkSize;
* @property mixed $requireBillingAddress;
* @property mixed $sandboxFlag;
* @property mixed $solutionType;
* @property mixed $transferShippingOptions;
* @property mixed $verifyPeer;
* @property mixed $visible_on_cart;
* @property mixed $visible_on_product;
*/
class Mage_Paypal_Model_Config
{
Expand Down Expand Up @@ -600,33 +627,6 @@ class Mage_Paypal_Model_Config
'zh_XC',
];

public $allow_ba_signup;
public $api_cert;
public $api_password;
public $api_signature;
public $api_username;
public $apiAuthentication;
public $apiPassword;
public $apiSignature;
public $apiUsername;
public $business_account;
public $businessAccount;
public $buttonFlavor;
public $buttonType;
public $cctypes;
public $debug;
public $lineItemsEnabled;
public $lineItemsSummary;
public $paymentAction;
public $paymentMarkSize;
public $requireBillingAddress;
public $sandboxFlag;
public $solutionType;
public $transferShippingOptions;
public $verifyPeer;
public $visible_on_cart;
public $visible_on_product;

/**
* Set method and store id, if specified
*
Expand Down