Skip to content

Commit

Permalink
Merge pull request #26713 from reflexive-communications/unsubscribe-p…
Browse files Browse the repository at this point in the history
…roperties

CRM_Mailing_Form_Optout, CRM_Mailing_Form_Unsubscribe: change properties to protected from private
  • Loading branch information
colemanw authored Jul 3, 2023
2 parents 0207a00 + 0839778 commit e17ce06
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions CRM/Mailing/Form/Optout.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ class CRM_Mailing_Form_Optout extends CRM_Core_Form {
/**
* @var int
*/
private $_job_id;
protected $_job_id;

/**
* @var int
*/
private $_queue_id;
protected $_queue_id;

/**
* @var string
*/
private $_hash;
protected $_hash;

/**
* @var string
*/
private $_email;
protected $_email;

public function preProcess() {
$this->_job_id = $job_id = CRM_Utils_Request::retrieve('jid', 'Integer', $this);
Expand Down
8 changes: 4 additions & 4 deletions CRM/Mailing/Form/Unsubscribe.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,22 +27,22 @@ class CRM_Mailing_Form_Unsubscribe extends CRM_Core_Form {
/**
* @var int
*/
private $_job_id;
protected $_job_id;

/**
* @var int
*/
private $_queue_id;
protected $_queue_id;

/**
* @var string
*/
private $_hash;
protected $_hash;

/**
* @var string
*/
private $_email;
protected $_email;

public function preProcess() {
$this->_job_id = $job_id = CRM_Utils_Request::retrieve('jid', 'Integer', $this);
Expand Down

0 comments on commit e17ce06

Please sign in to comment.