Skip to content
This repository has been archived by the owner on Oct 4, 2023. It is now read-only.

Remove reference to protected $_id because it is already declared in Base Parent Class #199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion CRM/Admin/Form/AdhocChargesItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_AdhocChargesItem extends CRM_Admin_Form {
protected $_id = NULL;

function preProcess() {
parent::preProcess();
Expand Down
1 change: 0 additions & 1 deletion CRM/Admin/Form/Resource.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_Resource extends CRM_Admin_Form {
protected $_id = NULL;

function preProcess() {
parent::preProcess();
Expand Down
1 change: 0 additions & 1 deletion CRM/Admin/Form/ResourceConfigOption.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_ResourceConfigOption extends CRM_Admin_Form {
protected $_id = NULL;
protected $_sid = NULL;

function preProcess() {
Expand Down
1 change: 0 additions & 1 deletion CRM/Admin/Form/ResourceConfigSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
*
*/
class CRM_Admin_Form_ResourceConfigSet extends CRM_Admin_Form {
protected $_id = NULL;

function preProcess() {
parent::preProcess();
Expand Down
2 changes: 0 additions & 2 deletions CRM/Booking/Form/Booking/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@
*/
abstract class CRM_Booking_Form_Booking_Base extends CRM_Core_Form {

protected $_id;

protected $_cid;

protected $_values;
Expand Down
4 changes: 1 addition & 3 deletions CRM/Booking/Form/SelectResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,7 @@ class CRM_Booking_Form_SelectResource extends CRM_Core_Form {
*
* @var integer
*/
//protected $_id;



private $configOptions;

/**
Expand Down