From 4e385d6c884da886598589cb97c7d101473dfcf7 Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Tue, 30 Dec 2014 14:15:56 -0800 Subject: [PATCH] Style - Remove @public, @private, @protected 1. These annotations are not valid in phpdoc. The actual annotation is "@access (public|private|protected)". 2. These annotations are useful in PHP4-style code. 3. These annotations are useless in PHP5-style code. Either they're redundant with the code, or they contradict the code. --- CRM/Activity/StateMachine/Search.php | 1 - CRM/Campaign/Form/Campaign.php | 1 - CRM/Campaign/Form/Petition.php | 1 - CRM/Campaign/Form/Petition/Signature.php | 4 ---- CRM/Campaign/StateMachine/Search.php | 1 - CRM/Case/Form/Activity/OpenCase.php | 1 - CRM/Case/StateMachine/Search.php | 1 - CRM/Contact/BAO/GroupContactCache.php | 3 --- CRM/Contact/Form/Edit/Household.php | 1 - CRM/Contact/Form/Inline.php | 2 -- CRM/Contact/Form/Task/Useradd.php | 2 -- CRM/Contact/StateMachine/Search.php | 1 - CRM/Contribute/Form/AbstractEditPayment.php | 9 --------- CRM/Contribute/Form/AdditionalPayment.php | 1 - CRM/Contribute/Form/Contribution.php | 9 --------- CRM/Contribute/Form/Contribution/Confirm.php | 2 -- CRM/Contribute/Form/ContributionBase.php | 17 ----------------- CRM/Contribute/Form/ContributionPage/Delete.php | 1 - CRM/Contribute/Form/UpdateSubscription.php | 1 - CRM/Contribute/StateMachine/Search.php | 1 - CRM/Core/BAO/CustomField.php | 1 - CRM/Core/BAO/Mapping.php | 2 -- CRM/Core/BAO/OptionValue.php | 3 --- CRM/Core/Payment.php | 4 ---- CRM/Core/Payment/AuthorizeNet.php | 4 ---- CRM/Core/Payment/Dummy.php | 2 -- CRM/Core/Payment/Google.php | 1 - CRM/Core/Payment/IATS.php | 1 - CRM/Core/Payment/Moneris.php | 1 - CRM/Core/Payment/PayJunction.php | 1 - CRM/Core/Payment/PayPalImpl.php | 6 ------ CRM/Core/Payment/PayflowPro.php | 1 - CRM/Core/Payment/PaymentExpress.php | 1 - CRM/Core/Payment/Realex.php | 2 -- CRM/Core/PseudoConstant.php | 1 - CRM/Core/Report/Excel.php | 1 - CRM/Event/Form/ManageEvent.php | 1 - CRM/Event/Form/ManageEvent/Delete.php | 1 - CRM/Event/Form/Participant.php | 8 -------- CRM/Event/Form/Registration.php | 15 --------------- CRM/Event/Form/Registration/Confirm.php | 2 -- CRM/Event/StateMachine/Search.php | 1 - CRM/Extension/Manager/Payment.php | 2 -- CRM/Friend/Form.php | 3 --- CRM/Grant/Form/Grant.php | 2 -- CRM/Grant/StateMachine/Search.php | 1 - CRM/Logging/Schema.php | 1 - CRM/Member/StateMachine/Search.php | 1 - CRM/PCP/Form/Contribute.php | 1 - CRM/PCP/Form/Event.php | 1 - CRM/PCP/Form/PCPAccount.php | 1 - CRM/Pledge/Form/Payment.php | 1 - CRM/Pledge/Form/Pledge.php | 5 ----- CRM/Pledge/StateMachine/Search.php | 1 - CRM/Upgrade/Form.php | 3 --- CRM/Utils/Date.php | 1 - CRM/Utils/String.php | 1 - tools/CRM/Auction/Form/Auction.php | 1 - tools/CRM/Auction/Form/Item.php | 3 --- tools/CRM/Auction/Form/ItemAccount.php | 2 -- tools/CRM/Auction/Page/Item.php | 1 - tools/CRM/Auction/Page/ManageItem.php | 1 - .../GoogleCheckout.php | 1 - 63 files changed, 154 deletions(-) diff --git a/CRM/Activity/StateMachine/Search.php b/CRM/Activity/StateMachine/Search.php index 945ac1772f..75a46de35a 100644 --- a/CRM/Activity/StateMachine/Search.php +++ b/CRM/Activity/StateMachine/Search.php @@ -37,7 +37,6 @@ class CRM_Activity_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Campaign/Form/Campaign.php b/CRM/Campaign/Form/Campaign.php index 10041b7dde..6add31fe58 100644 --- a/CRM/Campaign/Form/Campaign.php +++ b/CRM/Campaign/Form/Campaign.php @@ -64,7 +64,6 @@ class CRM_Campaign_Form_Campaign extends CRM_Core_Form { * The id of the campaign we are proceessing * * @var int - * @protected */ protected $_campaignId; diff --git a/CRM/Campaign/Form/Petition.php b/CRM/Campaign/Form/Petition.php index 2243136b66..b5fbd073f1 100644 --- a/CRM/Campaign/Form/Petition.php +++ b/CRM/Campaign/Form/Petition.php @@ -43,7 +43,6 @@ class CRM_Campaign_Form_Petition extends CRM_Core_Form { /** * Making this public so we can reference it in the formRule * @var int - * @public */ public $_surveyId; diff --git a/CRM/Campaign/Form/Petition/Signature.php b/CRM/Campaign/Form/Petition/Signature.php index b09025f9fe..a4d9597220 100644 --- a/CRM/Campaign/Form/Petition/Signature.php +++ b/CRM/Campaign/Form/Petition/Signature.php @@ -46,7 +46,6 @@ class CRM_Campaign_Form_Petition_Signature extends CRM_Core_Form { * The id of the contact associated with this signature * * @var int - * @public */ public $_contactId; @@ -96,7 +95,6 @@ class CRM_Campaign_Form_Petition_Signature extends CRM_Core_Form { * The id of the survey (petition) we are proceessing * * @var int - * @protected */ public $_surveyId; @@ -111,7 +109,6 @@ class CRM_Campaign_Form_Petition_Signature extends CRM_Core_Form { * Values to use for custom profiles * * @var array - * @protected */ public $_values; @@ -119,7 +116,6 @@ class CRM_Campaign_Form_Petition_Signature extends CRM_Core_Form { * The params submitted by the form * * @var array - * @protected */ protected $_params; diff --git a/CRM/Campaign/StateMachine/Search.php b/CRM/Campaign/StateMachine/Search.php index 2bdc763778..dc0d0a8f08 100755 --- a/CRM/Campaign/StateMachine/Search.php +++ b/CRM/Campaign/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Campaign_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Case/Form/Activity/OpenCase.php b/CRM/Case/Form/Activity/OpenCase.php index 1cf6e4dd33..8320ef7fec 100644 --- a/CRM/Case/Form/Activity/OpenCase.php +++ b/CRM/Case/Form/Activity/OpenCase.php @@ -43,7 +43,6 @@ class CRM_Case_Form_Activity_OpenCase { * The id of the client associated with this case * * @var int - * @public */ public $_contactID; diff --git a/CRM/Case/StateMachine/Search.php b/CRM/Case/StateMachine/Search.php index e9d394a38b..c83679733d 100644 --- a/CRM/Case/StateMachine/Search.php +++ b/CRM/Case/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Case_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Contact/BAO/GroupContactCache.php b/CRM/Contact/BAO/GroupContactCache.php index 0463c5be3c..72410220bf 100644 --- a/CRM/Contact/BAO/GroupContactCache.php +++ b/CRM/Contact/BAO/GroupContactCache.php @@ -61,7 +61,6 @@ class CRM_Contact_BAO_GroupContactCache extends CRM_Contact_DAO_GroupContactCach * * @return string the sql query which lists the groups that need to be refreshed * @static - * @public */ public static function groupRefreshedClause($groupIDClause = null, $includeHiddenGroups = FALSE) { $smartGroupCacheTimeout = self::smartGroupCacheTimeout(); @@ -99,7 +98,6 @@ AND ( g.cache_date IS NULL OR * * @return string the sql query which lists the groups that need to be refreshed * @static - * @public */ public static function shouldGroupBeRefreshed($groupID, $includeHiddenGroups = FALSE) { $query = self::groupRefreshedClause("g.id = %1", $includeHiddenGroups); @@ -276,7 +274,6 @@ WHERE id IN ( $groupIDs ) * @param $groupID int the groupID to delete cache entries, NULL for all groups * @param $onceOnly boolean run the function exactly once for all groups. * - * @public * @return void * @static */ diff --git a/CRM/Contact/Form/Edit/Household.php b/CRM/Contact/Form/Edit/Household.php index af7cd1a593..22996758a5 100644 --- a/CRM/Contact/Form/Edit/Household.php +++ b/CRM/Contact/Form/Edit/Household.php @@ -85,7 +85,6 @@ class CRM_Contact_Form_Edit_Household { * @param int $contactID * * @return array|bool $error@static - * @public */ public static function formRule($fields, $files, $contactID = NULL) { $errors = array(); diff --git a/CRM/Contact/Form/Inline.php b/CRM/Contact/Form/Inline.php index ebe268c255..5bd326b6c9 100644 --- a/CRM/Contact/Form/Inline.php +++ b/CRM/Contact/Form/Inline.php @@ -129,7 +129,6 @@ abstract class CRM_Contact_Form_Inline extends CRM_Core_Form { * Add entry to log table * * @return void - * @protected */ protected function log() { CRM_Core_BAO_Log::register($this->_contactId, @@ -143,7 +142,6 @@ abstract class CRM_Contact_Form_Inline extends CRM_Core_Form { * Prepares ajaxResponse * * @return void - * @protected */ protected function response() { // Load changelog footer from template diff --git a/CRM/Contact/Form/Task/Useradd.php b/CRM/Contact/Form/Task/Useradd.php index d74b18c2e2..dac0f8b85c 100755 --- a/CRM/Contact/Form/Task/Useradd.php +++ b/CRM/Contact/Form/Task/Useradd.php @@ -42,7 +42,6 @@ class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form { * Contact.display_name of contact for whom we are adding user * * @var int - * @public */ public $_displayName; @@ -50,7 +49,6 @@ class CRM_Contact_Form_Task_Useradd extends CRM_Core_Form { * Primary email of contact for whom we are adding user * * @var int - * @public */ public $_email; diff --git a/CRM/Contact/StateMachine/Search.php b/CRM/Contact/StateMachine/Search.php index 358aee70c5..1840e7aed9 100644 --- a/CRM/Contact/StateMachine/Search.php +++ b/CRM/Contact/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Contact_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Contribute/Form/AbstractEditPayment.php b/CRM/Contribute/Form/AbstractEditPayment.php index f0794317d4..692c26bf46 100644 --- a/CRM/Contribute/Form/AbstractEditPayment.php +++ b/CRM/Contribute/Form/AbstractEditPayment.php @@ -70,7 +70,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * The id of the contribution that we are processing * * @var int - * @public */ public $_id; @@ -78,7 +77,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * The id of the premium that we are proceessing * * @var int - * @public */ public $_premiumID = NULL; @@ -91,7 +89,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * The id of the note * * @var int - * @public */ public $_noteID; @@ -99,7 +96,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * The id of the contact associated with this contribution * * @var int - * @public */ public $_contactID; @@ -107,7 +103,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * The id of the pledge payment that we are processing * * @var int - * @public */ public $_ppID; @@ -115,7 +110,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * The id of the pledge that we are processing * * @var int - * @public */ public $_pledgeID; @@ -124,7 +118,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * financial transaction * * @var boolean - * @public */ public $_online = FALSE; @@ -132,7 +125,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * Stores all product option * * @var array - * @public */ public $_options; @@ -140,7 +132,6 @@ class CRM_Contribute_Form_AbstractEditPayment extends CRM_Core_Form { * Stores the honor id * * @var int - * @public */ public $_honorID = NULL; diff --git a/CRM/Contribute/Form/AdditionalPayment.php b/CRM/Contribute/Form/AdditionalPayment.php index 013950ffd5..973f557efb 100644 --- a/CRM/Contribute/Form/AdditionalPayment.php +++ b/CRM/Contribute/Form/AdditionalPayment.php @@ -45,7 +45,6 @@ class CRM_Contribute_Form_AdditionalPayment extends CRM_Contribute_Form_Abstract * Related component whose financial payment is being processed * * @var string - * @public */ protected $_component = NULL; diff --git a/CRM/Contribute/Form/Contribution.php b/CRM/Contribute/Form/Contribution.php index b7ba391e64..7a29d3757c 100644 --- a/CRM/Contribute/Form/Contribution.php +++ b/CRM/Contribute/Form/Contribution.php @@ -42,7 +42,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * The id of the contribution that we are processing * * @var int - * @public */ public $_id; @@ -50,7 +49,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * The id of the premium that we are processing * * @var int - * @public */ public $_premiumID = NULL; @@ -63,7 +61,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * The id of the note * * @var int - * @public */ public $_noteID; @@ -71,7 +68,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * The id of the contact associated with this contribution * * @var int - * @public */ public $_contactID; @@ -79,7 +75,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * The id of the pledge payment that we are processing * * @var int - * @public */ public $_ppID; @@ -87,7 +82,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * The id of the pledge that we are processing * * @var int - * @public */ public $_pledgeID; @@ -96,7 +90,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * financial transaction * * @var boolean - * @public */ public $_online = FALSE; @@ -104,7 +97,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * Stores all product option * * @var array - * @public */ public $_options; @@ -112,7 +104,6 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP * Storage of parameters from form * * @var array - * @public */ public $_params; diff --git a/CRM/Contribute/Form/Contribution/Confirm.php b/CRM/Contribute/Form/Contribution/Confirm.php index fb947496e5..efb3c9a431 100644 --- a/CRM/Contribute/Form/Contribution/Confirm.php +++ b/CRM/Contribute/Form/Contribution/Confirm.php @@ -42,7 +42,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr * The id of the contact associated with this contribution * * @var int - * @public */ public $_contactID; @@ -51,7 +50,6 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr * The id of the contribution object that is created when the form is submitted * * @var int - * @public */ public $_contributionID; diff --git a/CRM/Contribute/Form/ContributionBase.php b/CRM/Contribute/Form/ContributionBase.php index 336d97d7ce..e856c6b841 100644 --- a/CRM/Contribute/Form/ContributionBase.php +++ b/CRM/Contribute/Form/ContributionBase.php @@ -43,7 +43,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The id of the contribution page that we are processsing * * @var int - * @public */ public $_id; @@ -59,7 +58,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The contact id related to a membership * * @var int - * @public */ public $_membershipContactID; @@ -67,7 +65,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The values for the contribution db object * * @var array - * @protected */ public $_values; @@ -75,7 +72,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The paymentProcessor attributes for this page * * @var array - * @protected */ public $_paymentProcessor; public $_paymentObject = NULL; @@ -84,7 +80,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The membership block for this page * * @var array - * @protected */ public $_membershipBlock = NULL; @@ -97,7 +92,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The default values for the form * * @var array - * @protected */ protected $_defaults; @@ -105,7 +99,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The params submitted by the form and computed by the app * * @var array - * @public */ public $_params; @@ -113,7 +106,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The fields involved in this contribution page * * @var array - * @public */ public $_fields = array(); @@ -121,7 +113,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The billing location id for this contribiution page * * @var int - * @protected */ public $_bltID; @@ -129,7 +120,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Cache the amount to make things easier * * @var float - * @public */ public $_amount; @@ -137,7 +127,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Pcp id * * @var integer - * @public */ public $_pcpId; @@ -145,7 +134,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Pcp block * * @var array - * @public */ public $_pcpBlock; @@ -153,7 +141,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Pcp info * * @var array - * @public */ public $_pcpInfo; @@ -170,7 +157,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * The Membership ID for membership renewal * * @var int - * @public */ public $_membershipId; @@ -178,7 +164,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Price Set ID, if the new price set method is used * * @var int - * @protected */ public $_priceSetId; @@ -186,7 +171,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Array of fields for the price set * * @var array - * @protected */ public $_priceSet; @@ -196,7 +180,6 @@ class CRM_Contribute_Form_ContributionBase extends CRM_Core_Form { * Is honor block is enabled for this contribution? * * @var boolean - * @protected */ public $_honor_block_is_active = FALSE; diff --git a/CRM/Contribute/Form/ContributionPage/Delete.php b/CRM/Contribute/Form/ContributionPage/Delete.php index 6bdb309b7b..afd9e1e9a9 100644 --- a/CRM/Contribute/Form/ContributionPage/Delete.php +++ b/CRM/Contribute/Form/ContributionPage/Delete.php @@ -42,7 +42,6 @@ class CRM_Contribute_Form_ContributionPage_Delete extends CRM_Contribute_Form_Co * Page title * * @var string - * @protected */ protected $_title; diff --git a/CRM/Contribute/Form/UpdateSubscription.php b/CRM/Contribute/Form/UpdateSubscription.php index 1a424c0ecb..5caa0e0809 100644 --- a/CRM/Contribute/Form/UpdateSubscription.php +++ b/CRM/Contribute/Form/UpdateSubscription.php @@ -64,7 +64,6 @@ class CRM_Contribute_Form_UpdateSubscription extends CRM_Core_Form { * The id of the contact associated with this recurring contribution * * @var int - * @public */ public $_contactID; diff --git a/CRM/Contribute/StateMachine/Search.php b/CRM/Contribute/StateMachine/Search.php index 7ed72194b8..9a9bb81405 100644 --- a/CRM/Contribute/StateMachine/Search.php +++ b/CRM/Contribute/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Contribute_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Core/BAO/CustomField.php b/CRM/Core/BAO/CustomField.php index eec601e008..b6655f43ba 100644 --- a/CRM/Core/BAO/CustomField.php +++ b/CRM/Core/BAO/CustomField.php @@ -1999,7 +1999,6 @@ WHERE id IN ( %1, %2 ) * * @return array - fatal is fieldID does not exists, else array of tableName, columnName * @static - * @public */ public static function getTableColumnGroup($fieldID, $force = FALSE) { $cacheKey = "CRM_Core_DAO_CustomField_CustomGroup_TableColumn_{$fieldID}"; diff --git a/CRM/Core/BAO/Mapping.php b/CRM/Core/BAO/Mapping.php index 8567c53686..83015659ef 100644 --- a/CRM/Core/BAO/Mapping.php +++ b/CRM/Core/BAO/Mapping.php @@ -211,7 +211,6 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { * @param int $smartGroupId smart group id * * @return array $returnFields associated array of elements@static - * @public */ public static function getFormattedFields($smartGroupId) { $returnFields = array(); @@ -952,7 +951,6 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping { * * * @return array $returnFields formatted associated array of elements@static - * @public */ public static function formattedFields(&$params, $row = FALSE) { $fields = array(); diff --git a/CRM/Core/BAO/OptionValue.php b/CRM/Core/BAO/OptionValue.php index 9d8917373e..f76a8d4c67 100644 --- a/CRM/Core/BAO/OptionValue.php +++ b/CRM/Core/BAO/OptionValue.php @@ -444,7 +444,6 @@ class CRM_Core_BAO_OptionValue extends CRM_Core_DAO_OptionValue { * * @return array an array of array of values for this option group * @static - * @public */ public static function getOptionValuesArray($optionGroupID) { // check if we can get the field values from the system cache @@ -477,7 +476,6 @@ class CRM_Core_BAO_OptionValue extends CRM_Core_DAO_OptionValue { * * @return array an associative array of label, value pairs * @static - * @public */ public static function getOptionValuesAssocArray($optionGroupID) { $optionValues = self::getOptionValuesArray($optionGroupID); @@ -496,7 +494,6 @@ class CRM_Core_BAO_OptionValue extends CRM_Core_DAO_OptionValue { * * @return array an associative array of label, value pairs * @static - * @public */ public static function getOptionValuesAssocArrayFromName($optionGroupName) { $dao = new CRM_Core_DAO_OptionGroup(); diff --git a/CRM/Core/Payment.php b/CRM/Core/Payment.php index c1c2a63172..3e1def23ae 100644 --- a/CRM/Core/Payment.php +++ b/CRM/Core/Payment.php @@ -452,7 +452,6 @@ abstract class CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ abstract function checkConfig(); @@ -479,7 +478,6 @@ abstract class CRM_Core_Payment { /** * Page callback for civicrm/payment/ipn - * @public */ public static function handleIPN() { self::handlePaymentMethod( @@ -498,7 +496,6 @@ abstract class CRM_Core_Payment { * processor & ideally the processor will be validating the results * Load requested payment processor and call that processor's handle<$method> method * - * @public * @param $method * @param array $params */ @@ -599,7 +596,6 @@ abstract class CRM_Core_Payment { * @param string $method method to check for. * * @return boolean - * @public */ public function isSupported($method = 'cancelSubscription') { return method_exists(CRM_Utils_System::getClassName($this), $method); diff --git a/CRM/Core/Payment/AuthorizeNet.php b/CRM/Core/Payment/AuthorizeNet.php index f937171ace..646f7a1b74 100644 --- a/CRM/Core/Payment/AuthorizeNet.php +++ b/CRM/Core/Payment/AuthorizeNet.php @@ -98,7 +98,6 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment { * @param array $params assoc array of input parameters for this transaction * * @return array the result in a nice formatted array (or an error object) - * @public */ public function doDirectPayment(&$params) { if (!defined('CURLOPT_SSLCERT')) { @@ -210,8 +209,6 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment { /** * Submit an Automated Recurring Billing subscription - * - * @public */ public function doRecurPayment() { $template = CRM_Core_Smarty::singleton(); @@ -615,7 +612,6 @@ class CRM_Core_Payment_AuthorizeNet extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { $error = array(); diff --git a/CRM/Core/Payment/Dummy.php b/CRM/Core/Payment/Dummy.php index 13a99e1752..e406a91bf6 100644 --- a/CRM/Core/Payment/Dummy.php +++ b/CRM/Core/Payment/Dummy.php @@ -83,7 +83,6 @@ class CRM_Core_Payment_Dummy extends CRM_Core_Payment { * @param array $params assoc array of input parameters for this transaction * * @return array the result in a nice formatted array (or an error object) - * @public */ public function doDirectPayment(&$params) { // Invoke hook_civicrm_paymentProcessor @@ -155,7 +154,6 @@ class CRM_Core_Payment_Dummy extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { return NULL; diff --git a/CRM/Core/Payment/Google.php b/CRM/Core/Payment/Google.php index e057e532e5..8f0f204fd4 100644 --- a/CRM/Core/Payment/Google.php +++ b/CRM/Core/Payment/Google.php @@ -96,7 +96,6 @@ class CRM_Core_Payment_Google extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { $config = CRM_Core_Config::singleton(); diff --git a/CRM/Core/Payment/IATS.php b/CRM/Core/Payment/IATS.php index 6a9a77028b..ed7c8f9f71 100644 --- a/CRM/Core/Payment/IATS.php +++ b/CRM/Core/Payment/IATS.php @@ -337,7 +337,6 @@ class CRM_Core_Payment_IATS extends CRM_Core_Payment { * @internal param string $mode the mode we are operating in (live or test) * * @return string the error message if any - * @public */ public function checkConfig() { $error = array(); diff --git a/CRM/Core/Payment/Moneris.php b/CRM/Core/Payment/Moneris.php index bfd27c5b27..362a236277 100644 --- a/CRM/Core/Payment/Moneris.php +++ b/CRM/Core/Payment/Moneris.php @@ -329,7 +329,6 @@ class CRM_Core_Payment_Moneris extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { $error = array(); diff --git a/CRM/Core/Payment/PayJunction.php b/CRM/Core/Payment/PayJunction.php index 78273ef355..c9199bb044 100644 --- a/CRM/Core/Payment/PayJunction.php +++ b/CRM/Core/Payment/PayJunction.php @@ -284,7 +284,6 @@ class CRM_Core_Payment_PayJunction extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { $error = array(); diff --git a/CRM/Core/Payment/PayPalImpl.php b/CRM/Core/Payment/PayPalImpl.php index 058c0b4074..9501fea71a 100644 --- a/CRM/Core/Payment/PayPalImpl.php +++ b/CRM/Core/Payment/PayPalImpl.php @@ -110,7 +110,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * @param array $params assoc array of input parameters for this transaction * * @return array the result in an nice formatted array (or an error object) - * @public */ public function setExpressCheckOut(&$params) { $args = array(); @@ -154,7 +153,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * @param string $token the key associated with this transaction * * @return array the result in an nice formatted array (or an error object) - * @public */ public function getExpressCheckoutDetails($token) { $args = array(); @@ -197,7 +195,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * @internal param string $token the key associated with this transaction * * @return array the result in an nice formatted array (or an error object) - * @public */ public function doExpressCheckout(&$params) { $args = array(); @@ -315,7 +312,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * * @param string $component * @return array the result in an nice formatted array (or an error object) - * @public */ public function doDirectPayment(&$params, $component = 'contribute') { $args = array(); @@ -392,7 +388,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { $error = array(); @@ -442,7 +437,6 @@ class CRM_Core_Payment_PayPalImpl extends CRM_Core_Payment { * @param string $method method to check for. * * @return boolean - * @public */ public function isSupported($method = 'cancelSubscription') { if ($this->_paymentProcessor['payment_processor_type'] != 'PayPal') { diff --git a/CRM/Core/Payment/PayflowPro.php b/CRM/Core/Payment/PayflowPro.php index 30a19ed94b..33c380bdb2 100644 --- a/CRM/Core/Payment/PayflowPro.php +++ b/CRM/Core/Payment/PayflowPro.php @@ -435,7 +435,6 @@ class CRM_Core_Payment_PayflowPro extends CRM_Core_Payment { * @internal param string $mode the mode we are operating in (live or test) * * @return string the error message if any - * @public */ public function checkConfig() { $errorMsg = array(); diff --git a/CRM/Core/Payment/PaymentExpress.php b/CRM/Core/Payment/PaymentExpress.php index 4927ca9658..40fd9f12fb 100644 --- a/CRM/Core/Payment/PaymentExpress.php +++ b/CRM/Core/Payment/PaymentExpress.php @@ -92,7 +92,6 @@ class CRM_Core_Payment_PaymentExpress extends CRM_Core_Payment { * @internal param string $mode the mode we are operating in (live or test) * * @return string the error message if any - * @public */ public function checkConfig() { $config = CRM_Core_Config::singleton(); diff --git a/CRM/Core/Payment/Realex.php b/CRM/Core/Payment/Realex.php index d869d6f9be..20d7ee5962 100644 --- a/CRM/Core/Payment/Realex.php +++ b/CRM/Core/Payment/Realex.php @@ -137,7 +137,6 @@ class CRM_Core_Payment_Realex extends CRM_Core_Payment { * @param array $params assoc array of input parameters for this transaction * * @return array the result in a nice formatted array (or an error object) - * @public */ public function doDirectPayment(&$params) { @@ -530,7 +529,6 @@ class CRM_Core_Payment_Realex extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ public function checkConfig() { $error = array(); diff --git a/CRM/Core/PseudoConstant.php b/CRM/Core/PseudoConstant.php index 09e98db997..95b043b839 100644 --- a/CRM/Core/PseudoConstant.php +++ b/CRM/Core/PseudoConstant.php @@ -1685,7 +1685,6 @@ ORDER BY name"; * * @return int the country id that the state belongs to * @static - * @public */ public static function countryIDForStateID($stateID) { if (empty($stateID)) { diff --git a/CRM/Core/Report/Excel.php b/CRM/Core/Report/Excel.php index 11d3948c9e..918320583c 100644 --- a/CRM/Core/Report/Excel.php +++ b/CRM/Core/Report/Excel.php @@ -198,7 +198,6 @@ class CRM_Core_Report_Excel { * @param boolean $saveFile - * * @return void - * @public * @static */ public static function writeCSVFile($fileName, &$header, &$rows, $titleHeader = NULL, $outputHeader = TRUE, $saveFile = NULL) { diff --git a/CRM/Event/Form/ManageEvent.php b/CRM/Event/Form/ManageEvent.php index b01b49c7a8..379cbf59cd 100644 --- a/CRM/Event/Form/ManageEvent.php +++ b/CRM/Event/Form/ManageEvent.php @@ -43,7 +43,6 @@ class CRM_Event_Form_ManageEvent extends CRM_Core_Form { * The id of the event we are proceessing * * @var int - * @protected */ public $_id; diff --git a/CRM/Event/Form/ManageEvent/Delete.php b/CRM/Event/Form/ManageEvent/Delete.php index a1f09d9ccf..fefad7b1f1 100644 --- a/CRM/Event/Form/ManageEvent/Delete.php +++ b/CRM/Event/Form/ManageEvent/Delete.php @@ -42,7 +42,6 @@ class CRM_Event_Form_ManageEvent_Delete extends CRM_Event_Form_ManageEvent { * Page title * * @var string - * @protected */ protected $_title; diff --git a/CRM/Event/Form/Participant.php b/CRM/Event/Form/Participant.php index 94772ffc72..925366c024 100644 --- a/CRM/Event/Form/Participant.php +++ b/CRM/Event/Form/Participant.php @@ -46,7 +46,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * The values for the contribution db object * * @var array - * @protected */ public $_values; @@ -54,7 +53,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * The values for the quickconfig for priceset * * @var boolean - * @protected */ public $_quickConfig = NULL; @@ -62,7 +60,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * Price Set ID, if the new price set method is used * * @var int - * @protected */ public $_priceSetId; @@ -70,7 +67,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * Array of fields for the price set * * @var array - * @protected */ public $_priceSet; @@ -78,7 +74,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * The id of the participation that we are proceessing * * @var int - * @protected */ public $_id; @@ -86,7 +81,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * The id of the note * * @var int - * @protected */ protected $_noteId = NULL; @@ -94,7 +88,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * The id of the contact associated with this participation * * @var int - * @protected */ public $_contactId; @@ -102,7 +95,6 @@ class CRM_Event_Form_Participant extends CRM_Contribute_Form_AbstractEditPayment * Array of event values * * @var array - * @protected */ protected $_event; diff --git a/CRM/Event/Form/Registration.php b/CRM/Event/Form/Registration.php index 3bc3874cd9..0fbfed5d25 100644 --- a/CRM/Event/Form/Registration.php +++ b/CRM/Event/Form/Registration.php @@ -52,7 +52,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The id of the event we are proceessing * * @var int - * @protected */ public $_eventId; @@ -60,7 +59,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The array of ids of all the participant we are proceessing * * @var int - * @protected */ protected $_participantIDS = NULL; @@ -68,7 +66,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The id of the participant we are proceessing * * @var int - * @protected */ protected $_participantId; @@ -76,7 +73,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * Is participant able to walk registration wizard. * * @var Boolean - * @protected */ public $_allowConfirmation; @@ -84,7 +80,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * Is participant requires approval * * @var Boolean - * @public */ public $_requireApproval; @@ -92,7 +87,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * Is event configured for waitlist. * * @var Boolean - * @public */ public $_allowWaitlist; @@ -101,7 +95,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * when there are pre-registered. * * @var array - * @public */ public $_additionalParticipantIds; @@ -117,7 +110,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The values for the contribution db object * * @var array - * @protected */ public $_values; @@ -125,7 +117,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The paymentProcessor attributes for this page * * @var array - * @protected */ public $_paymentProcessor; @@ -133,7 +124,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The params submitted by the form and computed by the app * * @var array - * @protected */ protected $_params; @@ -141,7 +131,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The fields involved in this contribution page * * @var array - * @protected */ public $_fields; @@ -149,7 +138,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * The billing location id for this contribiution page * * @var int - * @protected */ public $_bltID; @@ -157,7 +145,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * Price Set ID, if the new price set method is used * * @var int - * @protected */ public $_priceSetId = NULL; @@ -165,7 +152,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { * Array of fields for the price set * * @var array - * @protected */ public $_priceSet; @@ -176,7 +162,6 @@ class CRM_Event_Form_Registration extends CRM_Core_Form { /* Is event already full. * * @var boolean - * @protected */ public $_isEventFull; diff --git a/CRM/Event/Form/Registration/Confirm.php b/CRM/Event/Form/Registration/Confirm.php index 9184a970d3..8f4cf6f0fd 100644 --- a/CRM/Event/Form/Registration/Confirm.php +++ b/CRM/Event/Form/Registration/Confirm.php @@ -44,7 +44,6 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { * The values for the contribution db object * * @var array - * @protected */ public $_values; @@ -52,7 +51,6 @@ class CRM_Event_Form_Registration_Confirm extends CRM_Event_Form_Registration { * The total amount * * @var float - * @public */ public $_totalAmount; diff --git a/CRM/Event/StateMachine/Search.php b/CRM/Event/StateMachine/Search.php index 0f3ae11033..e5120981ce 100644 --- a/CRM/Event/StateMachine/Search.php +++ b/CRM/Event/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Event_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Extension/Manager/Payment.php b/CRM/Extension/Manager/Payment.php index abe4a21aa7..13c10c73af 100644 --- a/CRM/Extension/Manager/Payment.php +++ b/CRM/Extension/Manager/Payment.php @@ -181,8 +181,6 @@ class CRM_Extension_Manager_Payment extends CRM_Extension_Manager_Base { * * @param CRM_Extension_Info $info * @param string $method - the method to call in the payment processor class - * - * @private */ private function _runPaymentHook(CRM_Extension_Info $info, $method) { // Not concerned about performance at this stage, as these are seldomly performed tasks diff --git a/CRM/Friend/Form.php b/CRM/Friend/Form.php index 31deffecfe..f3cc37962a 100644 --- a/CRM/Friend/Form.php +++ b/CRM/Friend/Form.php @@ -48,7 +48,6 @@ class CRM_Friend_Form extends CRM_Core_Form { * The id of the entity that we are proceessing * * @var int - * @protected */ protected $_entityId; @@ -56,7 +55,6 @@ class CRM_Friend_Form extends CRM_Core_Form { * The table name of the entity that we are proceessing * * @var string - * @protected */ protected $_entityTable; @@ -66,7 +64,6 @@ class CRM_Friend_Form extends CRM_Core_Form { * The contact ID * * @var int - * @protected */ protected $_contactID; diff --git a/CRM/Grant/Form/Grant.php b/CRM/Grant/Form/Grant.php index 432dbe72ee..9f7060c82b 100644 --- a/CRM/Grant/Form/Grant.php +++ b/CRM/Grant/Form/Grant.php @@ -43,7 +43,6 @@ class CRM_Grant_Form_Grant extends CRM_Core_Form { * The id of the case that we are proceessing * * @var int - * @protected */ protected $_id; @@ -51,7 +50,6 @@ class CRM_Grant_Form_Grant extends CRM_Core_Form { * The id of the contact associated with this contribution * * @var int - * @protected */ protected $_contactID; diff --git a/CRM/Grant/StateMachine/Search.php b/CRM/Grant/StateMachine/Search.php index 62c0a80ccf..b55b17afc7 100644 --- a/CRM/Grant/StateMachine/Search.php +++ b/CRM/Grant/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Grant_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Logging/Schema.php b/CRM/Logging/Schema.php index f3045b02c4..956500e551 100644 --- a/CRM/Logging/Schema.php +++ b/CRM/Logging/Schema.php @@ -653,7 +653,6 @@ COLS; * an audit trail * * @static - * @public */ public static function disableLoggingForThisConnection( ) { // do this only if logging is enabled diff --git a/CRM/Member/StateMachine/Search.php b/CRM/Member/StateMachine/Search.php index 89a95315a5..e910279527 100644 --- a/CRM/Member/StateMachine/Search.php +++ b/CRM/Member/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Member_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/PCP/Form/Contribute.php b/CRM/PCP/Form/Contribute.php index 2d17248cf5..50a0b76111 100644 --- a/CRM/PCP/Form/Contribute.php +++ b/CRM/PCP/Form/Contribute.php @@ -43,7 +43,6 @@ class CRM_PCP_Form_Contribute extends CRM_Contribute_Form_ContributionPage { * The type of pcp component. * * @var int - * @protected */ public $_component = 'contribute'; diff --git a/CRM/PCP/Form/Event.php b/CRM/PCP/Form/Event.php index 681fd2ec21..18c39447ca 100644 --- a/CRM/PCP/Form/Event.php +++ b/CRM/PCP/Form/Event.php @@ -43,7 +43,6 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent { * The type of pcp component. * * @var int - * @protected */ public $_component = 'event'; diff --git a/CRM/PCP/Form/PCPAccount.php b/CRM/PCP/Form/PCPAccount.php index 7746b7cdca..b743fd938b 100644 --- a/CRM/PCP/Form/PCPAccount.php +++ b/CRM/PCP/Form/PCPAccount.php @@ -60,7 +60,6 @@ class CRM_PCP_Form_PCPAccount extends CRM_Core_Form { * The default values for the form * * @var array - * @protected */ protected $_defaults; diff --git a/CRM/Pledge/Form/Payment.php b/CRM/Pledge/Form/Payment.php index c8e46d9023..71275bc34b 100644 --- a/CRM/Pledge/Form/Payment.php +++ b/CRM/Pledge/Form/Payment.php @@ -43,7 +43,6 @@ class CRM_Pledge_Form_Payment extends CRM_Core_Form { * The id of the pledge payment that we are proceessing * * @var int - * @public */ public $_id; diff --git a/CRM/Pledge/Form/Pledge.php b/CRM/Pledge/Form/Pledge.php index 0da5026d68..a72a69a692 100644 --- a/CRM/Pledge/Form/Pledge.php +++ b/CRM/Pledge/Form/Pledge.php @@ -44,7 +44,6 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form { * The id of the pledge that we are proceessing * * @var int - * @public */ public $_id; @@ -52,25 +51,21 @@ class CRM_Pledge_Form_Pledge extends CRM_Core_Form { * The id of the contact associated with this pledge * * @var int - * @public */ public $_contactID; /** * The Pledge values if an existing pledge - * @public */ public $_values; /** * The Pledge frequency Units - * @public */ public $_freqUnits; /** * Is current pledge pending. - * @public */ public $_isPending = FALSE; diff --git a/CRM/Pledge/StateMachine/Search.php b/CRM/Pledge/StateMachine/Search.php index 2a95eb60f5..962ffddfd0 100644 --- a/CRM/Pledge/StateMachine/Search.php +++ b/CRM/Pledge/StateMachine/Search.php @@ -38,7 +38,6 @@ class CRM_Pledge_StateMachine_Search extends CRM_Core_StateMachine { * The task that the wizard is currently processing * * @var string - * @protected */ protected $_task; diff --git a/CRM/Upgrade/Form.php b/CRM/Upgrade/Form.php index 7432908dbf..ac002dca8b 100644 --- a/CRM/Upgrade/Form.php +++ b/CRM/Upgrade/Form.php @@ -48,7 +48,6 @@ class CRM_Upgrade_Form extends CRM_Core_Form { * Upgrade for multilingual * * @var boolean - * @public */ public $multilingual = FALSE; @@ -56,7 +55,6 @@ class CRM_Upgrade_Form extends CRM_Core_Form { * Locales available for multilingual upgrade * * @var array - * @public */ public $locales; @@ -64,7 +62,6 @@ class CRM_Upgrade_Form extends CRM_Core_Form { * Number to string mapper * * @var array - * @public */ static $_numberMap = array( 0 => 'Zero', diff --git a/CRM/Utils/Date.php b/CRM/Utils/Date.php index 4eb4cf0cb7..9feff6fa25 100644 --- a/CRM/Utils/Date.php +++ b/CRM/Utils/Date.php @@ -1764,7 +1764,6 @@ class CRM_Utils_Date { * * @return the time in UTC * @static - * @public */ public static function getUTCTime($offset = 0) { $originalTimezone = date_default_timezone_get(); diff --git a/CRM/Utils/String.php b/CRM/Utils/String.php index 56d4955f5e..0aff0365d5 100644 --- a/CRM/Utils/String.php +++ b/CRM/Utils/String.php @@ -608,7 +608,6 @@ class CRM_Utils_String { * @param string $string the input string * * @return string the cleaned up string - * @public * @static */ public static function purifyHTML($string) { diff --git a/tools/CRM/Auction/Form/Auction.php b/tools/CRM/Auction/Form/Auction.php index 1bcc6d3fc2..924ed2a844 100644 --- a/tools/CRM/Auction/Form/Auction.php +++ b/tools/CRM/Auction/Form/Auction.php @@ -46,7 +46,6 @@ class CRM_Auction_Form_Auction extends CRM_Core_Form { * the id of the auction we are proceessing * * @var int - * @protected */ public $_id; diff --git a/tools/CRM/Auction/Form/Item.php b/tools/CRM/Auction/Form/Item.php index c5081a1404..c8a8563d18 100644 --- a/tools/CRM/Auction/Form/Item.php +++ b/tools/CRM/Auction/Form/Item.php @@ -46,7 +46,6 @@ class CRM_Auction_Form_Item extends CRM_Core_Form { * the id of the item we are processing * * @var int - * @protected */ public $_id; @@ -54,7 +53,6 @@ class CRM_Auction_Form_Item extends CRM_Core_Form { * the id of the auction for this item * * @var int - * @protected */ public $_aid; @@ -62,7 +60,6 @@ class CRM_Auction_Form_Item extends CRM_Core_Form { * the id of the person donating this item * * @var int - * @protected */ public $_donorID; diff --git a/tools/CRM/Auction/Form/ItemAccount.php b/tools/CRM/Auction/Form/ItemAccount.php index 84eb7e6d12..55635a5e5c 100644 --- a/tools/CRM/Auction/Form/ItemAccount.php +++ b/tools/CRM/Auction/Form/ItemAccount.php @@ -44,7 +44,6 @@ class CRM_Auction_Form_ItemAccount extends CRM_Core_Form { * the id of the auction for which item needs to be updated/added. * * @var int - * @protected */ public $_aid = NULL; @@ -52,7 +51,6 @@ class CRM_Auction_Form_ItemAccount extends CRM_Core_Form { * the id of the item we are processing * * @var int - * @protected */ public $_id = NULL; diff --git a/tools/CRM/Auction/Page/Item.php b/tools/CRM/Auction/Page/Item.php index 0af605db71..c3a8694841 100644 --- a/tools/CRM/Auction/Page/Item.php +++ b/tools/CRM/Auction/Page/Item.php @@ -44,7 +44,6 @@ class CRM_Auction_Page_Item extends CRM_Core_Page { * the id of the auction for this item * * @var int - * @protected */ public $_aid; diff --git a/tools/CRM/Auction/Page/ManageItem.php b/tools/CRM/Auction/Page/ManageItem.php index 085349e5b7..74111faa4c 100644 --- a/tools/CRM/Auction/Page/ManageItem.php +++ b/tools/CRM/Auction/Page/ManageItem.php @@ -44,7 +44,6 @@ class CRM_Auction_Page_ManageItem extends CRM_Core_Page { * the id of the auction for this item * * @var int - * @protected */ public $_aid; diff --git a/tools/extensions/org.civicrm.payment.googlecheckout/GoogleCheckout.php b/tools/extensions/org.civicrm.payment.googlecheckout/GoogleCheckout.php index 595df1e7c0..fc9b70332b 100644 --- a/tools/extensions/org.civicrm.payment.googlecheckout/GoogleCheckout.php +++ b/tools/extensions/org.civicrm.payment.googlecheckout/GoogleCheckout.php @@ -96,7 +96,6 @@ class org_civicrm_payment_googlecheckout extends CRM_Core_Payment { * This function checks to see if we have the right config values * * @return string the error message if any - * @public */ function checkConfig() { $config = CRM_Core_Config::singleton(); -- 2.25.1