Style - Remove @public, @private, @protected
authorTim Otten <totten@civicrm.org>
Tue, 30 Dec 2014 22:15:56 +0000 (14:15 -0800)
committerTim Otten <totten@civicrm.org>
Wed, 31 Dec 2014 00:41:27 +0000 (16:41 -0800)
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.

63 files changed:
CRM/Activity/StateMachine/Search.php
CRM/Campaign/Form/Campaign.php
CRM/Campaign/Form/Petition.php
CRM/Campaign/Form/Petition/Signature.php
CRM/Campaign/StateMachine/Search.php
CRM/Case/Form/Activity/OpenCase.php
CRM/Case/StateMachine/Search.php
CRM/Contact/BAO/GroupContactCache.php
CRM/Contact/Form/Edit/Household.php
CRM/Contact/Form/Inline.php
CRM/Contact/Form/Task/Useradd.php
CRM/Contact/StateMachine/Search.php
CRM/Contribute/Form/AbstractEditPayment.php
CRM/Contribute/Form/AdditionalPayment.php
CRM/Contribute/Form/Contribution.php
CRM/Contribute/Form/Contribution/Confirm.php
CRM/Contribute/Form/ContributionBase.php
CRM/Contribute/Form/ContributionPage/Delete.php
CRM/Contribute/Form/UpdateSubscription.php
CRM/Contribute/StateMachine/Search.php
CRM/Core/BAO/CustomField.php
CRM/Core/BAO/Mapping.php
CRM/Core/BAO/OptionValue.php
CRM/Core/Payment.php
CRM/Core/Payment/AuthorizeNet.php
CRM/Core/Payment/Dummy.php
CRM/Core/Payment/Google.php
CRM/Core/Payment/IATS.php
CRM/Core/Payment/Moneris.php
CRM/Core/Payment/PayJunction.php
CRM/Core/Payment/PayPalImpl.php
CRM/Core/Payment/PayflowPro.php
CRM/Core/Payment/PaymentExpress.php
CRM/Core/Payment/Realex.php
CRM/Core/PseudoConstant.php
CRM/Core/Report/Excel.php
CRM/Event/Form/ManageEvent.php
CRM/Event/Form/ManageEvent/Delete.php
CRM/Event/Form/Participant.php
CRM/Event/Form/Registration.php
CRM/Event/Form/Registration/Confirm.php
CRM/Event/StateMachine/Search.php
CRM/Extension/Manager/Payment.php
CRM/Friend/Form.php
CRM/Grant/Form/Grant.php
CRM/Grant/StateMachine/Search.php
CRM/Logging/Schema.php
CRM/Member/StateMachine/Search.php
CRM/PCP/Form/Contribute.php
CRM/PCP/Form/Event.php
CRM/PCP/Form/PCPAccount.php
CRM/Pledge/Form/Payment.php
CRM/Pledge/Form/Pledge.php
CRM/Pledge/StateMachine/Search.php
CRM/Upgrade/Form.php
CRM/Utils/Date.php
CRM/Utils/String.php
tools/CRM/Auction/Form/Auction.php
tools/CRM/Auction/Form/Item.php
tools/CRM/Auction/Form/ItemAccount.php
tools/CRM/Auction/Page/Item.php
tools/CRM/Auction/Page/ManageItem.php
tools/extensions/org.civicrm.payment.googlecheckout/GoogleCheckout.php

index 945ac1772f455645807ca984fd6901a71a4563ee..75a46de35a6dd888d0a6a75caf70f02e47d979da 100644 (file)
@@ -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;
 
index 10041b7dde9701afaa5bd34e997742fe856b21d3..6add31fe5819c15bc0d548d72067fb1198e58f22 100644 (file)
@@ -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;
 
index 2243136b66b4095d81798a46dea9ac04028979b9..b5fbd073f194e63e18e81198714915478b9a1409 100644 (file)
@@ -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;
 
index b09025f9fe4f70750933fc7216ab3acdabcd099b..a4d959722042d0c735023f1610212b925c56e602 100644 (file)
@@ -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;
 
index 2bdc7637781b6087aa5edcdc1c4ce167feef55f1..dc0d0a8f08765b1623ecef58afeb548e0b27d11b 100755 (executable)
@@ -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;
 
index 1cf6e4dd33ee3717f04abd4f1e971e32f848847c..8320ef7feca9e65970e62ca2e4c6d0b40539f95f 100644 (file)
@@ -43,7 +43,6 @@ class CRM_Case_Form_Activity_OpenCase {
    * The id of the client associated with this case
    *
    * @var int
-   * @public
    */
   public $_contactID;
 
index e9d394a38b3a450049189c2f7ca953991a978c7d..c83679733d47e39f01217140ba1a58d45b3ed110 100644 (file)
@@ -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;
 
index 0463c5be3ccfc40f42c549388aff36007b6d1039..72410220bf057555347a5965e912ba82b8016efc 100644 (file)
@@ -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
    */
index af7cd1a593900c94ad56ebacf36ef1d290249a74..22996758a5ebb691e32fbbf6a96678a35cb045e4 100644 (file)
@@ -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();
index ebe268c255edbbbcf3a94884bd93f3656200b633..5bd326b6c9723efe4c725cb680c86c91b46e720f 100644 (file)
@@ -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
index d74b18c2e26f008ac10cf58f9d103dd07a991dd0..dac0f8b85cca3b9817bd2d5ccd0a95329c450ea4 100755 (executable)
@@ -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;
 
index 358aee70c5f4d4462c40e3ee91bc4ce536f7a0b1..1840e7aed9bcfe9e92ff6dbfcf95ab199cb0612a 100644 (file)
@@ -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;
 
index f0794317d4e909b812a67b10aa3b918c9b888876..692c26bf46eb5866119f8e88f086daa0a3cb3cfc 100644 (file)
@@ -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;
 
index 013950ffd5a448378cb5a18818782656fe7c895e..973f557efbbc3991debe735b2104bdd03a2a3ea3 100644 (file)
@@ -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;
 
index b7ba391e64aade2e16112e6cb0f0d65da2774f73..7a29d3757c3ee02128d879b173f24d8c6e2cf2d2 100644 (file)
@@ -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;
 
index fb947496e59865f22b05ed5b5e52fd05588bb39d..efb3c9a431ee5aca190aaa6c7af470d69749f5c4 100644 (file)
@@ -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;
 
index 336d97d7ce948781751fcb447dd04dd27273aaf3..e856c6b841466171a46a914f7c63a529dc37c229 100644 (file)
@@ -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;
 
index 6bdb309b7b7c34eb6e9cb180eee09e24d660e576..afd9e1e9a9793e70b154510b1d9a3e5be1251526 100644 (file)
@@ -42,7 +42,6 @@ class CRM_Contribute_Form_ContributionPage_Delete extends CRM_Contribute_Form_Co
    * Page title
    *
    * @var string
-   * @protected
    */
   protected $_title;
 
index 1a424c0ecbf48655bf7f7c99d88558aa14f4eca4..5caa0e0809bb76ecc188437e8bbf5a22fcb9884a 100644 (file)
@@ -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;
 
index 7ed72194b8d35faad088e7b006ffacacde937b36..9a9bb81405be31618b489865c5b440990185cc7a 100644 (file)
@@ -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;
 
index eec601e00814803f866f6eeeff3327805a6657fc..b6655f43baef37b0f7098e46f8f4e6bf3abe02c5 100644 (file)
@@ -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}";
index 8567c536867ef474a30a0272372da5f0860727f6..83015659ef1ec319104c4956e4178e5d14ff8346 100644 (file)
@@ -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();
index 9d8917373e71aacf4084d6e85a043c840a8f0db6..f76a8d4c67248d4e90bb34cd0b29b8e2b7454ccf 100644 (file)
@@ -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();
index c1c2a631720a3ab8075bf8b00559e058cc1b5c7e..3e1def23aec8c9a8058f315f7e07a1fd89ce549f 100644 (file)
@@ -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);
index f937171aceb710197d4b0b7aae066b979fa63284..646f7a1b747569ab4e91a6317b799de581ee818a 100644 (file)
@@ -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();
index 13a99e1752580fc4f31aafbe950a540ec9a920c8..e406a91bf6430ec15030ae34f33a477aad8c448f 100644 (file)
@@ -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;
index e057e532e57a2c05478d3a58bb4073c34f8d01c1..8f0f204fd44af430baf92f193ba03e45e7b1e041 100644 (file)
@@ -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();
index 6a9a77028bf541c3132e9381c79479be134411c0..ed7c8f9f7143231e5310f40ae0b678fd6f6016e6 100644 (file)
@@ -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();
index bfd27c5b27a22d68154eab7e0fa9f3057ccf8ae9..362a2362775e733089789ea5f87933bb7e8f1b2a 100644 (file)
@@ -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();
index 78273ef355a6d856d6fc5a3d0ac73ed8b31044e5..c9199bb0442fba31438b5bf39287f0e49e29d45d 100644 (file)
@@ -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();
index 058c0b4074ecd1d6dcde310f1ba526cc5b6920fe..9501fea71a8e97dfe021247e703b354951f0288c 100644 (file)
@@ -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') {
index 30a19ed94bef073401c66f76d9f58e57ad4c490b..33c380bdb2b34583c2caec1dec7aec8030641808 100644 (file)
@@ -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();
index 4927ca96586b0b375d677055aab14b71d89751eb..40fd9f12fbd432f3002117ffc334bceb3eeb30db 100644 (file)
@@ -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();
index d869d6f9bed4ea8b2642ab183c0f6e88ae998204..20d7ee5962a4b35334e41af6117e26e4a3d19ec0 100644 (file)
@@ -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();
index 09e98db997fe1a488ad0cdf2d436353e2a462e4e..95b043b839bf102019cc7a88e0e0b137ec0509c9 100644 (file)
@@ -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)) {
index 11d3948c9e6e7add1e2e88b63752af5a6a482c98..918320583cdb5f0115bcf2f94b321fc225a04f09 100644 (file)
@@ -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) {
index b01b49c7a87c3af627595879ca0a9915162ecd95..379cbf59cd92a352784320ff5a83ccd8c57bea95 100644 (file)
@@ -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;
 
index a1f09d9ccfe791f7045e271bc276c685665ef242..fefad7b1f1ec9cc65e3117f137c8e1140c737be6 100644 (file)
@@ -42,7 +42,6 @@ class CRM_Event_Form_ManageEvent_Delete extends CRM_Event_Form_ManageEvent {
    * Page title
    *
    * @var string
-   * @protected
    */
   protected $_title;
 
index 94772ffc7201533b7e26ec1dca1e8a3790c1a474..925366c024f97d29f43251f163d25cf85e7ed73a 100644 (file)
@@ -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;
 
index 3bc3874cd9f52e1a7808a35e33c49f24e0f8abd1..0fbfed5d2531256f94852279710a42746fbca68a 100644 (file)
@@ -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;
index 9184a970d38d0b742eaeb3fc017f07a7f5882c1b..8f4cf6f0fdc43faa1c2fef45cf19432670993000 100644 (file)
@@ -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;
 
index 0f3ae11033891a92bf4a32958b7949e7946b728d..e5120981ce72be371951fb1b68c7571ad01aeae3 100644 (file)
@@ -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;
 
index abe4a21aa78c2994bf290e57bc60807e22c61b19..13c10c73aff35cdb79c01fb351a59c985bc00e30 100644 (file)
@@ -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
index 31deffecfe28cd535930c110c66d4d60076a37a1..f3cc37962a83870c782a78d05db5e89feadcfac3 100644 (file)
@@ -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;
 
index 432dbe72ee567cfa0ed4ce2ca0293e6822f4999f..9f7060c82b6749ac49a32a389648aa9d7f31431f 100644 (file)
@@ -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;
 
index 62c0a80ccfb8d03abfe262f766625e73e0629971..b55b17afc7328442a2c136f391003f6d3d39f03d 100644 (file)
@@ -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;
 
index f3045b02c44c7b5a30bb202a08902953b03acc48..956500e551c45cc33401a58dc8af8da0820fa75f 100644 (file)
@@ -653,7 +653,6 @@ COLS;
    * an audit trail
    *
    * @static
-   * @public
    */
   public static function disableLoggingForThisConnection( ) {
     // do this only if logging is enabled
index 89a95315a50355ff758ab6fce5ce830edb56c728..e910279527285e635111c732cd14452a7dcc5543 100644 (file)
@@ -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;
 
index 2d17248cf560c2a06b5463c08715384662b1e007..50a0b76111fb0ba868e274dcd64ae962ef417572 100644 (file)
@@ -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';
 
index 681fd2ec21d6b7a24b74891b68c43f2c04d5bf10..18c39447ca53d95f8b6789b0b6cee6b8eb6b89e2 100644 (file)
@@ -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';
 
index 7746b7cdcac154aae1faa3d860956347ea1d75e7..b743fd938b73d1b45bcd870a22d67bfd255cff78 100644 (file)
@@ -60,7 +60,6 @@ class CRM_PCP_Form_PCPAccount extends CRM_Core_Form {
    * The default values for the form
    *
    * @var array
-   * @protected
    */
   protected $_defaults;
 
index c8e46d9023b581454abd5107a1dab9f035895553..71275bc34b3b87b372fb8c6eeb0ce48fd8431eaa 100644 (file)
@@ -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;
 
index 0da5026d68cb2e3100e88919bbe391e639df3a9e..a72a69a692f632c44966d9643e411cc2437529cf 100644 (file)
@@ -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;
 
index 2a95eb60f5e3da3e823f9caba7eb349766ad7ee3..962ffddfd0dcee2698fbd53bce04a3eb7ee73b54 100644 (file)
@@ -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;
 
index 7432908dbfcb60ffe2be4d112d37c2ea70dae635..ac002dca8b58c2589401842408d9cfd9981a691a 100644 (file)
@@ -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',
index 4eb4cf0cb7abcfb233f389bb312b0ee9e072ed13..9feff6fa25c7cebacd52d56126be20b532464a8d 100644 (file)
@@ -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();
index 56d4955f5e3f1af3893aeae5272dab56f3c69e5e..0aff0365d518ec2132e7bb4321fda0ca954f926d 100644 (file)
@@ -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) {
index 1bcc6d3fc216142cd7b79bc2894be571c1e98a2d..924ed2a844e2e89126458df694f522eb05424f26 100644 (file)
@@ -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;
 
index c5081a14044528f3271b1f97748b3ad976933e4a..c8a8563d182a6fb5f85baf2f149091a75162858e 100644 (file)
@@ -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;
 
index 84eb7e6d12ddf7ac4fadaeeac1bd1e7952cc8de0..55635a5e5ca985b3e449e9891119cae1a2712c8c 100644 (file)
@@ -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;
 
index 0af605db71536b91e0b6ed0ee0aaf0349ff35100..c3a86948415a05c46b78a62cb29b329667e91af4 100644 (file)
@@ -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;
 
index 085349e5b7d311c560d5a6a6f5feaf6ef59073c8..74111faa4c8b6ae7acc5d3eb35921d244f1f7aa5 100644 (file)
@@ -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;
 
index 595df1e7c0e02667fcb316f1a0748f23d6f45eb0..fc9b70332b211039002b03cae7d740edf2193cf1 100644 (file)
@@ -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();