Skip to content

Commit

Permalink
refs #41568, remove unuse or mis-typed properties
Browse files Browse the repository at this point in the history
  • Loading branch information
jimyhuang committed Sep 25, 2024
1 parent ad7fe27 commit da837da
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CRM/Admin/Form/PaymentProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
*
*/
class CRM_Admin_Form_PaymentProcessor extends CRM_Admin_Form {
public $_ppType;
protected $_ppType = NULL;

protected $_id = NULL;

protected $_testID = NULL;
Expand Down
1 change: 0 additions & 1 deletion CRM/Contribute/Form/ContributionBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form {
public $_defaultMemTypeId;
public $_paymentProcessors;
public $_contributeMode;
public $_ppType;
public $_defaultFromRequest;
/**
* the id of the contribution page that we are proceessing
Expand Down
1 change: 0 additions & 1 deletion CRM/Event/Form/Registration/Register.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ class CRM_Event_Form_Registration_Register extends CRM_Event_Form_Registration {
* The status message that user view.
*
*/
protected $_waitlistMsg = NULL;
protected $_requireApprovalMsg = NULL;

protected $_ppType;
Expand Down
2 changes: 0 additions & 2 deletions CRM/Group/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@


class CRM_Group_Controller extends CRM_Core_Controller {

public $_pages;
/**
* class constructor
*/
Expand Down
1 change: 0 additions & 1 deletion CRM/Profile/Form/Edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
*
*/
class CRM_Profile_Form_Edit extends CRM_Profile_Form {
public $_errors;
protected $_postURL = NULL;
protected $_cancelURL = NULL;
protected $_errorURL = NULL;
Expand Down
2 changes: 1 addition & 1 deletion CRM/Report/Form/Member/Summary.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class CRM_Report_Form_Member_Summary extends CRM_Report_Form {
public $_groupBy;
public $_aliases;
public $_absoluteUrl;
public $_interval = NULL;
protected $_summary = NULL;
protected $_interval = NULL;
protected $_charts = array('' => 'Tabular',
'barChart' => 'Bar Chart',
'pieChart' => 'Pie Chart',
Expand Down

0 comments on commit da837da

Please sign in to comment.