INFRA-132 - @param type fixes
authorColeman Watts <coleman@civicrm.org>
Fri, 9 Jan 2015 16:00:52 +0000 (11:00 -0500)
committerColeman Watts <coleman@civicrm.org>
Fri, 9 Jan 2015 16:30:23 +0000 (11:30 -0500)
72 files changed:
CRM/Activity/BAO/Activity.php
CRM/Campaign/BAO/Survey.php
CRM/Contact/BAO/Contact/Utils.php
CRM/Contact/BAO/GroupContactCache.php
CRM/Contact/BAO/GroupNesting.php
CRM/Contact/BAO/Query.php
CRM/Contact/BAO/Relationship.php
CRM/Contact/Form/Contact.php
CRM/Contact/Form/Search/Advanced.php
CRM/Contact/Import/Parser/Contact.php
CRM/Contribute/BAO/Contribution.php
CRM/Contribute/Form/Contribution.php
CRM/Contribute/Form/Contribution/Confirm.php
CRM/Core/BAO/CustomGroup.php
CRM/Core/BAO/CustomOption.php
CRM/Core/BAO/Extension.php
CRM/Core/BAO/File.php
CRM/Core/BAO/Mapping.php
CRM/Core/BAO/Navigation.php
CRM/Core/BAO/UFMatch.php
CRM/Core/Config.php
CRM/Core/DAO.php
CRM/Core/I18n.php
CRM/Core/I18n/Schema.php
CRM/Core/ManagedEntities.php
CRM/Core/OptionGroup.php
CRM/Core/Payment/AuthorizeNetIPN.php
CRM/Core/Payment/Realex.php
CRM/Core/PseudoConstant.php
CRM/Core/Region.php
CRM/Core/Resources.php
CRM/Core/Session.php
CRM/Event/BAO/Event.php
CRM/Event/BAO/ParticipantPayment.php
CRM/Event/Form/Registration.php
CRM/Extension/Mapper.php
CRM/Import/Parser.php
CRM/Logging/Schema.php
CRM/Mailing/BAO/Mailing.php
CRM/Member/Form.php
CRM/Price/BAO/LineItem.php
CRM/Profile/Page/Router.php
CRM/Upgrade/Form.php
CRM/Upgrade/Incremental/Legacy.php
CRM/Upgrade/Incremental/php/FourFive.php
CRM/Upgrade/Incremental/php/FourFour.php
CRM/Upgrade/Incremental/php/FourOne.php
CRM/Upgrade/Incremental/php/FourSix.php
CRM/Upgrade/Incremental/php/FourThree.php
CRM/Upgrade/Incremental/php/FourTwo.php
CRM/Upgrade/Snapshot/V4p2/Price/BAO/LineItem.php
CRM/Utils/Date.php
CRM/Utils/File.php
CRM/Utils/Signer.php
CRM/Utils/System/Drupal.php
CRM/Utils/System/Drupal6.php
CRM/Utils/System/Drupal8.php
CRM/Utils/System/DrupalBase.php
CRM/Utils/System/Joomla.php
CRM/Utils/System/Soap.php
CRM/Utils/System/UnitTests.php
CRM/Utils/System/WordPress.php
CRM/Utils/Token.php
CRM/Utils/Zip.php
tests/phpunit/CRM/Contact/BAO/ContactTest.php
tests/phpunit/CRM/Contact/BAO/GroupContactCacheTest.php
tests/phpunit/CRM/Core/BAO/ActionScheduleTest.php
tests/phpunit/CRM/Utils/StringTest.php
tests/phpunit/CiviTest/CiviSeleniumTestCase.php
tests/phpunit/CiviTest/CiviUnitTestCase.php
tests/phpunit/WebTest/Contact/InlineFieldsEditTest.php
tests/phpunit/api/v3/APIStandardsTest.php

index c7b43a32144f45db1a304df2782c44d24fff0802..e3524ec18f265b31b5dab314f377deaab6934138 100644 (file)
@@ -2053,8 +2053,8 @@ AND cl.modified_id  = c.id
   /**
    * Create a follow up a given activity
    *
-   * @param $activityId
-   *   Int activity id of parent activity.
+   * @param int $activityId
+   *   activity id of parent activity.
    * @param array $params
    *
    * @return $this|null|object
index 682945e88efca49a7a4595e080de1090a93cf274..c3045e67b320adc055e8ca2f9fd1af85c823400b 100644 (file)
@@ -341,8 +341,8 @@ SELECT  survey.id    as id,
   /**
    * Get Surveys custom groups
    *
-   * @param $surveyTypes
-   *   Array an array of survey type id.
+   * @param array $surveyTypes
+   *   an array of survey type id.
    *
    * @return array
    * @static
index 45ae2c083d29a27db5ecf310fe84229e15f768ad..0b99c67c9840fd07742bef71011ccca2e1520455 100644 (file)
@@ -484,12 +484,12 @@ WHERE id={$contactId}; ";
    * Build form for related contacts / on behalf of organization.
    *
    * @param CRM_Core_Form $form
-   * @param $contactType
-   *   String contact type.
+   * @param string $contactType
+   *   contact type.
    * @param int $countryID
    * @param int $stateID
-   * @param $title
-   *   String fieldset title.
+   * @param string $title
+   *   fieldset title.
    *
    * @static
    */
index 4ebd3a618ba5e9e165ee874e7851c09f2369bfc1..2bb9288ff5485c45ae5ebcd394746d223e94ba57 100644 (file)
@@ -244,10 +244,9 @@ AND    g.refresh_date IS NULL
   /**
    * Change the cache_date
    *
-   * @param $groupID
-   *   Array(int).
-   * @param $processed
-   *   Bool, whether the cache data was recently modified.
+   * @param array $groupID
+   * @param bool $processed
+   *   Whether the cache data was recently modified.
    */
   public static function updateCacheTime($groupID, $processed) {
     // only update cache entry if we had any values
@@ -279,10 +278,10 @@ WHERE  id IN ( $groupIDs )
    * cache date, i.e. the removal is not done if the group was recently
    * loaded into the cache.
    *
-   * @param $groupID
-   *   Int the groupID to delete cache entries, NULL for all groups.
-   * @param $onceOnly
-   *   Boolean run the function exactly once for all groups.
+   * @param int $groupID
+   *   the groupID to delete cache entries, NULL for all groups.
+   * @param bool $onceOnly
+   *   run the function exactly once for all groups.
    *
    * @return void
    * @static
index 172f9a6beeebdb333aecfac7b990d244dc16d04f..04beb39952410a2bf2716002dd114fe7554272d6 100644 (file)
@@ -395,8 +395,8 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
    * Returns true if checkGroupId is a parent of one of the groups in
    * groupIds, false otherwise.
    *
-   * @param $groupIds
-   *   Array of group ids (or one group id) to serve as the starting point.
+   * @param array $groupIds
+   *   of group ids (or one group id) to serve as the starting point.
    * @param $checkGroupId
    *   The group id to check if it is a parent of the $groupIds group(s).
    *
@@ -427,8 +427,8 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
    * Returns true if checkGroupId is a child of one of the groups in
    * groupIds, false otherwise.
    *
-   * @param $groupIds
-   *   Array of group ids (or one group id) to serve as the starting point.
+   * @param array $groupIds
+   *   of group ids (or one group id) to serve as the starting point.
    * @param $checkGroupId
    *   The group id to check if it is a child of the $groupIds group(s).
    *
@@ -461,8 +461,8 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
    * Returns true if checkGroupId is an ancestor of one of the groups in
    * groupIds, false otherwise.
    *
-   * @param $groupIds
-   *   Array of group ids (or one group id) to serve as the starting point.
+   * @param array $groupIds
+   *   of group ids (or one group id) to serve as the starting point.
    * @param $checkGroupId
    *   The group id to check if it is an ancestor of the $groupIds group(s).
    *
@@ -502,8 +502,8 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
    * Returns true if checkGroupId is a descendent of one of the groups in
    * groupIds, false otherwise.
    *
-   * @param $groupIds
-   *   Array of group ids (or one group id) to serve as the starting point.
+   * @param array $groupIds
+   *   of group ids (or one group id) to serve as the starting point.
    * @param $checkGroupId
    *   The group id to check if it is a descendent of the $groupIds group(s).
    *
@@ -542,7 +542,7 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
   /**
    * Returns array of group ids of ancestor groups of the specified group.
    *
-   * @param $groupIds
+   * @param array $groupIds
    *   An array of valid group ids (passed by reference).
    *
    * @param bool $includeSelf
@@ -579,7 +579,7 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
   /**
    * Returns array of ancestor groups of the specified group.
    *
-   * @param $groupIds
+   * @param array $groupIds
    *   An array of valid group ids (passed by reference).
    *
    * @param bool $includeSelf
@@ -594,7 +594,7 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
   /**
    * Returns array of group ids of child groups of the specified group.
    *
-   * @param $groupIds
+   * @param array $groupIds
    *   An array of valid group ids (passed by reference).
    *
    * @return array $groupIdArray List of groupIds that represent the requested group and its children@access public
@@ -616,7 +616,7 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
   /**
    * Returns array of group ids of parent groups of the specified group.
    *
-   * @param $groupIds
+   * @param array $groupIds
    *   An array of valid group ids (passed by reference).
    *
    * @return array $groupIdArray         List of groupIds that represent the requested group and its parents@access public
@@ -638,7 +638,7 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
   /**
    * Returns array of group ids of descendent groups of the specified group.
    *
-   * @param $groupIds
+   * @param array $groupIds
    *   An array of valid group ids (passed by reference).
    *
    * @param bool $includeSelf
@@ -672,7 +672,7 @@ class CRM_Contact_BAO_GroupNesting extends CRM_Contact_DAO_GroupNesting implemen
   /**
    * Returns array of descendent groups of the specified group.
    *
-   * @param $groupIds
+   * @param array $groupIds
    *   An array of valid group ids (passed by reference).
    *
    * @param bool $includeSelf
index b54075d001ed4e70ad0891aedb138b6728e3c174..385764563cd48fac0c2ebf7ada7fd454610c82b8 100644 (file)
@@ -5365,22 +5365,22 @@ AND   displayRelType.is_active = 1
   /**
    * Builds the necessary structures for all fields that are similar to option value lookups
    *
-   * @param $name
-   *   String the name of the field.
-   * @param $op
-   *   String the sql operator, this function should handle ALL SQL operators.
-   * @param $value
-   *   String|integer|array depends on the operator and who's calling the query builder.
-   * @param $grouping
-   *   Int the index where to place the where clause.
+   * @param string $name
+   *   the name of the field.
+   * @param string $op
+   *   the sql operator, this function should handle ALL SQL operators.
+   * @param string $value
+   *   depends on the operator and who's calling the query builder.
+   * @param int $grouping
+   *   the index where to place the where clause.
    * @param $selectValues
    *   The key value pairs for this element. This allows us to use this function for things besides option-value pairs.
-   * @param $field
-   *   Array an array that contains various properties of the field identified by $name.
-   * @param $label
-   *   String The label for this field element.
-   * @param $dataType
-   *   String The data type for this element.
+   * @param array $field
+   *   an array that contains various properties of the field identified by $name.
+   * @param string $label
+   *   The label for this field element.
+   * @param string $dataType
+   *   The data type for this element.
    * @param bool $useIDsOnly
    *
    * @return void     adds the where clause and qill to the query object
index 328a12f0f0986f719c3bcb8163a5d151153196e4..43ee06e48de5b111204f2b2b305924911db02940 100644 (file)
@@ -1277,12 +1277,12 @@ LEFT JOIN  civicrm_country ON (civicrm_address.country_id = civicrm_country.id)
    * membership is is extedned by the same relationship type to that
    * of the existing relationship.
    *
-   * @param $contactId
-   *   Int contact id.
-   * @param $params
-   *   Array array of values submitted by POST.
-   * @param $ids
-   *   Array array of ids.
+   * @param int $contactId
+   *   contact id.
+   * @param array $params
+   *   array of values submitted by POST.
+   * @param array $ids
+   *   array of ids.
    * @param \const|\which $action which action called this function
    *
    * @param bool $active
@@ -1575,11 +1575,11 @@ WHERE id IN ( {$contacts} )
   /**
    * Return list of permissioned employer for a given contact.
    *
-   * @param $contactID
-   *   Int contact id whose employers.
+   * @param int $contactID
+   *   contact id whose employers.
    * are to be found.
-   * @param $name
-   *   String employers sort name.
+   * @param string $name
+   *   employers sort name.
    *
    * @static
    *
@@ -1599,12 +1599,11 @@ WHERE id IN ( {$contacts} )
   /**
    * Function to return list of permissioned contacts for a given contact and relationship type
    *
-   * @param $contactID
-   *   Int contact id whose permissioned contacts are to be found.
-   * @param $relTypeId
-   *   String one or more relationship type id's.
-   * @param $name
-   *   String.
+   * @param int $contactID
+   *   contact id whose permissioned contacts are to be found.
+   * @param string $relTypeId
+   *   one or more relationship type id's.
+   * @param string $name
    *
    * @static
    *
index c79406edaf914e195d10bb320d54b217f995aedf..e0cb1c9fbce564b4aa0cbcb7df76379559a03caf 100644 (file)
@@ -1192,8 +1192,8 @@ class CRM_Contact_Form_Contact extends CRM_Core_Form {
    * This function either parse street address in to child
    * elements or build street address from child elements.
    *
-   * @param $params
-   *   Array of key value consist of address blocks.
+   * @param array $params
+   *   of key value consist of address blocks.
    *
    * @return array $parseSuccess as array of sucess/fails for each address block@static
    */
@@ -1278,7 +1278,7 @@ class CRM_Contact_Form_Contact extends CRM_Core_Form {
    * Check parse result and if some address block fails then this
    * function return the status message for all address blocks.
    *
-   * @param $parseResult
+   * @param array $parseResult
    *   An array of address blk instance and its status.
    *
    * @return null|string $statusMsg   string status message for all address blocks.@static
@@ -1309,8 +1309,8 @@ class CRM_Contact_Form_Contact extends CRM_Core_Form {
    * Convert normal number to ordinal number format.
    * like 1 => 1st, 2 => 2nd and so on...
    *
-   * @param $number
-   *   Int number to convert in to ordinal number.
+   * @param int $number
+   *   number to convert in to ordinal number.
    *
    * @return ordinal number for given number.
    * @static
@@ -1346,8 +1346,8 @@ class CRM_Contact_Form_Contact extends CRM_Core_Form {
    * Update membership status to deceased
    * function return the status message for updated membership.
    *
-   * @param $deceasedParams
-   *   Array having contact id and deceased value.
+   * @param array $deceasedParams
+   *   having contact id and deceased value.
    *
    * @return null|string $updateMembershipMsg string  status message for updated membership.
    */
index 61bcf5364b547be1555286989c9646513131ae3d..4ae3e984e37c9677948a394564ed989b365eb3cc 100644 (file)
@@ -388,8 +388,7 @@ class CRM_Contact_Form_Search_Advanced extends CRM_Contact_Form_Search {
   /**
    * Normalize default values for multiselect plugins
    *
-   * @param $defaults
-   *   Array.
+   * @param array $defaults
    * @return array
    */
   public function normalizeDefaultValues(&$defaults) {
index d356898256020bffcfc43e006df22ec4f27a6a22..453070cbd1328b0be7ee38f1a307f47f05875e8b 100644 (file)
@@ -1694,13 +1694,12 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Contact_Import_Parser {
   /**
    * Format params for update and fill mode
    *
-   * @param $params
-   *   Array reference to an array containing all the.
+   * @param array $params
+   *   reference to an array containing all the.
    * values for import
-   * @param $onDuplicate
-   *   Int.
-   * @param $cid
-   *   Int contact id.
+   * @param int $onDuplicate
+   * @param int $cid
+   *   contact id.
    */
   public function formatParams(&$params, $onDuplicate, $cid) {
     if ($onDuplicate == CRM_Import_Parser::DUPLICATE_SKIP) {
index 2a7515d19e8fba0ee24974317e8cb48296f2f6e9..2c83e42c0e544b82d7b580848ed82e807236d0b5 100644 (file)
@@ -2399,8 +2399,7 @@ WHERE  contribution_id = %1 ";
    *
    * @param $values
    * @param $input
-   * @param $template
-   *   CRM_Core_SMARTY.
+   * @param CRM_Core_SMARTY $template
    * @param bool $recur
    * @param bool $returnMessageText
    *
index 6eac14fc7548d526232d633935d839b1d9fcdf6a..3043185c89cef4ca42b6a733b481726ded2d70e6 100644 (file)
@@ -1509,8 +1509,7 @@ class CRM_Contribute_Form_Contribution extends CRM_Contribute_Form_AbstractEditP
   /**
    * @param $submittedValues
    * @param $config
-   * @param $session
-   *   CRM_Core_Session.
+   * @param CRM_Core_Session $session
    * @param $lineItem
    *
    * @throws CRM_Core_Exception
index b1e1be6db54e1591403981f1d0cdc7740f1cb782..8a0f7f8c836f234392e70744a7fc740149447888 100644 (file)
@@ -1624,14 +1624,14 @@ class CRM_Contribute_Form_Contribution_Confirm extends CRM_Contribute_Form_Contr
   /**
    * Add on behalf of organization and it's location
    *
-   * @param $behalfOrganization
-   *   Array array of organization info.
-   * @param $contactID
-   *   Int individual contact id. One.
+   * @param array $behalfOrganization
+   *   array of organization info.
+   * @param int $contactID
+   *   individual contact id. One.
    * who is doing the process of signup / contribution.
    *
-   * @param $values
-   *   Array form values array.
+   * @param array $values
+   *   form values array.
    * @param array $params
    * @param null $fields
    *
index c077771d7b211b6fceb6c3ac6556893ed5d34de4..95c7c459153038d86dbc137b924ddba8913273b2 100644 (file)
@@ -1158,8 +1158,7 @@ ORDER BY civicrm_custom_group.weight,
    * If there are custom-groups which only apply to certain subtypes,
    * those WILL be included.
    *
-   * @param $entityType
-   *   String.
+   * @param string $entityType
    *
    * @return CRM_Core_DAO_CustomGroup
    */
@@ -1244,8 +1243,8 @@ ORDER BY civicrm_custom_group.weight,
    *
    * @param $group
    *   Object the DAO custom group object.
-   * @param $force
-   *   Boolean whether to force the deletion, even if there are custom fields.
+   * @param bool $force
+   *   whether to force the deletion, even if there are custom fields.
    *
    * @return boolean   false if field exists for this group, true if group gets deleted.
    *
index 179abf99abe17346112427941f21f192bde8ea2b..5bb4b39c1dd66c54d9358c3ca1534592d3544d59 100644 (file)
@@ -110,14 +110,14 @@ class CRM_Core_BAO_CustomOption {
    * Returns the option label for a custom field with a specific value. Handles all
    * custom field data and html types
    *
-   * @param $fieldId
-   *   Int the custom field ID.
+   * @param int $fieldId
+   *   the custom field ID.
    * @pram  $value    string the value (typically from the DB) of this custom field
    * @param $value
-   * @param $htmlType
-   *   String the html type of the field (optional).
-   * @param $dataType
-   *   String the data type of the field (optional).
+   * @param string $htmlType
+   *   the html type of the field (optional).
+   * @param string $dataType
+   *   the data type of the field (optional).
    *
    * @return string          the label to display for this custom field
    * @static
index bc785846a90d297ce7f60bc747dead9b6cc6f6b6..09155244de3a8dec9b280cef9793bfc205719f2f 100644 (file)
@@ -79,10 +79,9 @@ class CRM_Core_BAO_Extension extends CRM_Core_DAO_Extension {
   /**
    * Change the schema version of an extension
    *
-   * @param $fullName
-   *   String, the fully-qualified name (eg "com.example.myextension").
-   * @param $schemaVersion
-   *   String.
+   * @param string $fullName
+   *   the fully-qualified name (eg "com.example.myextension").
+   * @param string $schemaVersion
    * @return void
    */
   public static function setSchemaVersion($fullName, $schemaVersion) {
@@ -97,8 +96,8 @@ class CRM_Core_BAO_Extension extends CRM_Core_DAO_Extension {
   /**
    * Determine the schema version of an extension
    *
-   * @param $fullName
-   *   String, the fully-qualified name (eg "com.example.myextension").
+   * @param string $fullName
+   *   the fully-qualified name (eg "com.example.myextension").
    * @return string
    */
   public static function getSchemaVersion($fullName) {
index 5538b9282dc9b0cee4a3cce983d19ac64ad4fc39..ab1165c369bcb2b6b192651bd96cff34a1bc953d 100644 (file)
@@ -463,12 +463,12 @@ AND       CEF.entity_id    = %2";
    * Return a clean url string and the number of attachment for a
    * given entityTable, entityID
    *
-   * @param $entityTable
-   *   String The entityTable to which the file is attached.
-   * @param $entityID
-   *   Int The id of the object in the above entityTable.
-   * @param $separator
-   *   String The string separator where to implode the urls.
+   * @param string $entityTable
+   *   The entityTable to which the file is attached.
+   * @param int $entityID
+   *   The id of the object in the above entityTable.
+   * @param string $separator
+   *   The string separator where to implode the urls.
    *
    * @return array              An array with 2 elements. The string and the number of attachments
    * @static
@@ -652,11 +652,11 @@ AND       CEF.entity_id    = %2";
   /**
    * Display paper icon for a file attachment -- CRM-13624
    *
-   * @param $entityTable
-   *   String The entityTable to which the file is attached. eg "civicrm_contact", "civicrm_note", "civicrm_activity".
+   * @param string $entityTable
+   *   The entityTable to which the file is attached. eg "civicrm_contact", "civicrm_note", "civicrm_activity".
    *                             If you have the ID of a specific row in civicrm_file, use $entityTable='*'
-   * @param $entityID
-   *   Int The id of the object in the above entityTable.
+   * @param int $entityID
+   *   The id of the object in the above entityTable.
    *
    * @return array|NULL          list of HTML snippets; one HTML snippet for each attachment. If none found, then NULL
    *
index 14d409a3449fa639d688a2193e5cc838792985f7..574046997fa411efd5556a477d146c41faeebe79 100644 (file)
@@ -194,10 +194,10 @@ class CRM_Core_BAO_Mapping extends CRM_Core_DAO_Mapping {
   /**
    * Check Duplicate Mapping Name
    *
-   * @param $nameField
-   *   String mapping Name.
-   * @param $mapTypeId
-   *   String mapping Type.
+   * @param string $nameField
+   *   mapping Name.
+   * @param string $mapTypeId
+   *   mapping Type.
    *
    * @return boolean
    */
index 9a68eae56f80c4a039870813c15e659291077b03..1be9ede08bfc8ec531e62643c83769598fdf831f 100644 (file)
@@ -149,9 +149,9 @@ class CRM_Core_BAO_Navigation extends CRM_Core_DAO_Navigation {
   /**
    * Calculate navigation weight
    *
-   * @param $parentID
+   * @param int $parentID
    *   Parent_id of a menu.
-   * @param $menuID
+   * @param int $menuID
    *   Menu id.
    *
    * @return int $weight string@static
index 8a704f0fa39a6c3e89043eab5eb03d7565c2e6af..f33d6edfcb236088b0ed43b6c07b2ef0ba2d3799 100644 (file)
@@ -419,8 +419,8 @@ AND    domain_id    = %4
   /**
    * Update the email value for the contact and user profile
    *
-   * @param $contactId
-   *   Int Contact ID of the user.
+   * @param int $contactId
+   *   Contact ID of the user.
    * @param $emailAddress
    *   Email to be modified for the user.
    *
index ccaf9c6700193dc088e946b160342efc8a51b85c..404bd0f4ce7ea5162e4d46339bf538545721b54d 100644 (file)
@@ -187,10 +187,10 @@ class CRM_Core_Config extends CRM_Core_Config_Variables {
   /**
    * Singleton function used to manage this object.
    *
-   * @param $loadFromDB
-   *   Boolean whether to load from the database.
-   * @param $force
-   *   Boolean whether to force a reconstruction.
+   * @param bool $loadFromDB
+   *   whether to load from the database.
+   * @param bool $force
+   *   whether to force a reconstruction.
    *
    * @return CRM_Core_Config
    * @static
index ea17f584709ea2bc76d9b7cee2a5a527be8b3ab4..3fb536234541574f0d063ff4dc8d681fb1fc5279 100644 (file)
@@ -1534,10 +1534,9 @@ SELECT contact_id
   /**
    * Escape a list of strings for use with "WHERE X IN (...)" queries.
    *
-   * @param $strings
-   *   Array.
-   * @param $default
-   *   String the value to use if $strings has no elements.
+   * @param array $strings
+   * @param string $default
+   *   the value to use if $strings has no elements.
    * @return string eg "abc","def","ghi"
    */
   public static function escapeStrings($strings, $default = NULL) {
@@ -1812,8 +1811,8 @@ SELECT contact_id
    * Build a list of triggers via hook and add them to (err, reconcile them
    * with) the database.
    *
-   * @param $tableName
-   *   String the specific table requiring a rebuild; or NULL to rebuild all tables.
+   * @param string $tableName
+   *   the specific table requiring a rebuild; or NULL to rebuild all tables.
    * @param bool $force
    *
    * @see CRM-9716
@@ -1856,8 +1855,8 @@ SELECT contact_id
   /**
    * Wrapper function to drop triggers
    *
-   * @param $tableName
-   *   String the specific table requiring a rebuild; or NULL to rebuild all tables.
+   * @param string $tableName
+   *   the specific table requiring a rebuild; or NULL to rebuild all tables.
    */
   public static function dropTriggers($tableName = NULL) {
     $info = array();
@@ -1870,10 +1869,10 @@ SELECT contact_id
   }
 
   /**
-   * @param $info
-   *   Array per hook_civicrm_triggerInfo.
-   * @param $onlyTableName
-   *   String the specific table requiring a rebuild; or NULL to rebuild all tables.
+   * @param array $info
+   *   per hook_civicrm_triggerInfo.
+   * @param string $onlyTableName
+   *   the specific table requiring a rebuild; or NULL to rebuild all tables.
    */
   public static function createTriggers(&$info, $onlyTableName = NULL) {
     // Validate info array, should probably raise errors?
@@ -2203,12 +2202,12 @@ SELECT contact_id
    *
    * @param string $fieldName
    *   Name of fields.
-   * @param $filter
-   *   Array filter to be applied indexed by operator.
-   * @param $type
-   *   String type of field (not actually used - nor in api @todo ).
-   * @param $alias
-   *   String alternative field name ('as') @todo- not actually used.
+   * @param array $filter
+   *   filter to be applied indexed by operator.
+   * @param string $type
+   *   type of field (not actually used - nor in api @todo ).
+   * @param string $alias
+   *   alternative field name ('as') @todo- not actually used.
    * @param bool $returnSanitisedArray
    *   Return a sanitised array instead of a clause.
    *  this is primarily so we can add filters @ the api level to the Query object based fields
index ee83f8bb75276fb3d833fadbf51999b91d26c7ab..1b581e29f716e969090d29cd4b7872bcacebe56b 100644 (file)
@@ -55,8 +55,8 @@ class CRM_Core_I18n {
   /**
    * A locale-based constructor that shouldn't be called from outside of this class (use singleton() instead).
    *
-   * @param $locale
-   *   String the base of this certain object's existence.
+   * @param string $locale
+   *   the base of this certain object's existence.
    *
    * @return \CRM_Core_I18n
    */
@@ -118,8 +118,8 @@ class CRM_Core_I18n {
   /**
    * Return languages available in this instance of CiviCRM.
    *
-   * @param $justEnabled
-   *   Boolean whether to return all languages or just the enabled ones.
+   * @param bool $justEnabled
+   *   whether to return all languages or just the enabled ones.
    *
    * @return             array    of code/language name mappings
    */
@@ -172,8 +172,8 @@ class CRM_Core_I18n {
   /**
    * Replace arguments in a string with their values. Arguments are represented by % followed by their number.
    *
-   * @param $str
-   *   String source string.
+   * @param string $str
+   *   source string.
    * @param mixed arguments, can be passed in an array or through single variables
    *
    * @return      string  modified string
@@ -210,10 +210,10 @@ class CRM_Core_I18n {
    *   - count - The item count for plural mode (3rd parameter of ngettext())
    *   - context - gettext context of that string (for homonym handling)
    *
-   * @param $text
-   *   String the original string.
-   * @param $params
-   *   Array the params of the translation (if any).
+   * @param string $text
+   *   the original string.
+   * @param array $params
+   *   the params of the translation (if any).
    *
    * @return        string  the translated string
    */
@@ -344,8 +344,8 @@ class CRM_Core_I18n {
   /**
    * Translate a string to the current locale.
    *
-   * @param $string
-   *   String this string should be translated.
+   * @param string $string
+   *   this string should be translated.
    *
    * @return         string  the translated string
    */
@@ -356,10 +356,10 @@ class CRM_Core_I18n {
   /**
    * Localize (destructively) array values.
    *
-   * @param $array
-   *   Array the array for localization (in place).
-   * @param $params
-   *   Array an array of additional parameters.
+   * @param array $array
+   *   the array for localization (in place).
+   * @param array $params
+   *   an array of additional parameters.
    *
    * @return        void
    */
@@ -383,8 +383,8 @@ class CRM_Core_I18n {
   /**
    * Localize (destructively) array elements with keys of 'title'.
    *
-   * @param $array
-   *   Array the array for localization (in place).
+   * @param array $array
+   *   the array for localization (in place).
    *
    * @return        void
    */
index ddabc94a28706cda546657951ed362f6c982f9a8..1e7426eaedd9a9daae9fb853455c8d99ef3b20c2 100644 (file)
@@ -60,8 +60,8 @@ class CRM_Core_I18n_Schema {
    * Switch database from single-lang to multi (by adding
    * the first language and dropping the original columns).
    *
-   * @param $locale
-   *   String the first locale to create (migrate to).
+   * @param string $locale
+   *   the first locale to create (migrate to).
    *
    * @return void
    */
@@ -115,8 +115,8 @@ class CRM_Core_I18n_Schema {
    * Switch database from multi-lang back to single (by dropping
    * additional columns and views and retaining only the selected locale).
    *
-   * @param $retain
-   *   String the locale to retain.
+   * @param string $retain
+   *   the locale to retain.
    *
    * @return void
    */
@@ -155,12 +155,12 @@ class CRM_Core_I18n_Schema {
   /**
    * Switch a given table from multi-lang to single (by retaining only the selected locale).
    *
-   * @param $retain
-   *   String the locale to retain.
-   * @param $table
-   *   String the table containing the column.
-   * @param $class
-   *   String schema structure class to use to recreate indices.
+   * @param string $retain
+   *   the locale to retain.
+   * @param string $table
+   *   the table containing the column.
+   * @param string $class
+   *   schema structure class to use to recreate indices.
    *
    * @param array $triggers
    *
@@ -240,10 +240,10 @@ class CRM_Core_I18n_Schema {
    * Add a new locale to a multi-lang db, setting
    * its values to the current default locale.
    *
-   * @param $locale
-   *   String the new locale to add.
-   * @param $source
-   *   String the locale to copy from.
+   * @param string $locale
+   *   the new locale to add.
+   * @param string $source
+   *   the locale to copy from.
    *
    * @return void
    */
@@ -299,10 +299,10 @@ class CRM_Core_I18n_Schema {
   /**
    * Rebuild multilingual indices, views and triggers (useful for upgrades)
    *
-   * @param $locales
-   *   Array locales to be rebuilt.
-   * @param $version
-   *   String version of schema structure to use.
+   * @param array $locales
+   *   locales to be rebuilt.
+   * @param string $version
+   *   version of schema structure to use.
    *
    * @return void
    */
@@ -365,8 +365,8 @@ class CRM_Core_I18n_Schema {
   /**
    * Rewrite SQL query to use views to access tables with localized columns.
    *
-   * @param $query
-   *   String the query for rewrite.
+   * @param string $query
+   *   the query for rewrite.
    *
    * @return string        the rewritten query
    */
@@ -436,12 +436,12 @@ class CRM_Core_I18n_Schema {
   /**
    * CREATE INDEX queries for a given locale and table
    *
-   * @param $locale
-   *   String locale for which the queries should be created (null to create original indices).
-   * @param $table
-   *   String table for which the queries should be created.
-   * @param $class
-   *   String schema structure class to use.
+   * @param string $locale
+   *   locale for which the queries should be created (null to create original indices).
+   * @param string $table
+   *   table for which the queries should be created.
+   * @param string $class
+   *   schema structure class to use.
    *
    * @return array          array of CREATE INDEX queries
    */
@@ -478,14 +478,14 @@ class CRM_Core_I18n_Schema {
   /**
    * CREATE VIEW query for a given locale and table
    *
-   * @param $locale
-   *   String locale of the view.
-   * @param $table
-   *   String table of the view.
+   * @param string $locale
+   *   locale of the view.
+   * @param string $table
+   *   table of the view.
    * @param CRM_Core_DAO $dao
    *   A DAO object to run DESCRIBE queries.
-   * @param $class
-   *   String schema structure class to use.
+   * @param string $class
+   *   schema structure class to use.
    *
    * @return array          array of CREATE INDEX queries
    */
index ca4deb4f275cb6fcf174c82f4357ad8e24a26ac4..a0935dcf28414dad3803ec998ab5c050588767ab 100644 (file)
@@ -129,8 +129,8 @@ class CRM_Core_ManagedEntities {
    * Create, update, and delete entities declared by an active module
    *
    * @param \CRM_Core_Module|string $module string
-   * @param $todos
-   *   Array $name => array().
+   * @param array $todos
+   *   $name => array().
    */
   public function reconcileEnabledModule(CRM_Core_Module $module, $todos) {
     $dao = new CRM_Core_DAO_Managed();
index 93e0993345de36db77fdaae63b86a244380d91b4..da62d5ea6c4b885e7e80ab3101f1e562b0384445 100644 (file)
@@ -92,25 +92,25 @@ class CRM_Core_OptionGroup {
    * (radio, select, checkbox etc). OptionGroups for most cases have the
    * 'label' in the label colum and the 'id' or 'name' in the value column
    *
-   * @param $name
-   *   String name of the option group.
-   * @param $flip
-   *   Boolean results are return in id => label format if false.
+   * @param string $name
+   *   name of the option group.
+   * @param bool $flip
+   *   results are return in id => label format if false.
    *                            if true, the results are reversed
-   * @param $grouping
-   *   Boolean if true, return the value in 'grouping' column.
-   * @param $localize
-   *   Boolean if true, localize the results before returning.
-   * @param $condition
-   *   String add another condition to the sql query.
-   * @param $labelColumnName
-   *   String the column to use for 'label'.
-   * @param $onlyActive
-   *   Boolean return only the action option values.
-   * @param $fresh
-   *   Boolean ignore cache entries and go back to DB.
-   * @param $keyColumnName
-   *   String the column to use for 'key'.
+   * @param bool $grouping
+   *   if true, return the value in 'grouping' column.
+   * @param bool $localize
+   *   if true, localize the results before returning.
+   * @param string $condition
+   *   add another condition to the sql query.
+   * @param string $labelColumnName
+   *   the column to use for 'label'.
+   * @param bool $onlyActive
+   *   return only the action option values.
+   * @param bool $fresh
+   *   ignore cache entries and go back to DB.
+   * @param string $keyColumnName
+   *   the column to use for 'key'.
    *
    * @return array      the values as specified by the above params
    * @static
@@ -204,22 +204,21 @@ WHERE  v.option_group_id = g.id
    * (radio, select, checkbox etc). OptionGroups for most cases have the
    * 'label' in the label colum and the 'id' or 'name' in the value column
    *
-   * @param $id
-   *   Integer id of the option group.
-   * @param $flip
-   *   Boolean results are return in id => label format if false.
-   *                            if true, the results are reversed
-   * @param $grouping
-   *   Boolean if true, return the value in 'grouping' column.
-   * @param $localize
-   *   Boolean if true, localize the results before returning.
-   * @param $labelColumnName
-   *   String the column to use for 'label'.
-   *
+   * @param int $id
+   *   id of the option group.
+   * @param bool $flip
+   *   results are return in id => label format if false.
+   *   if true, the results are reversed
+   * @param bool $grouping
+   *   if true, return the value in 'grouping' column.
+   * @param bool $localize
+   *   if true, localize the results before returning.
+   * @param string $labelColumnName
+   *   the column to use for 'label'.
    * @param bool $onlyActive
    * @param bool $fresh
    *
-   * @return array      the values as specified by the above params
+   * @return array of values as specified by the above params
    * @static
    * @void
    */
@@ -262,16 +261,15 @@ WHERE  v.option_group_id = g.id
    *
    * @param array $params
    *   Reference array of values submitted by the form. Based on.
-   *                           $flip, creates new elements in $params for each field in
-   *                           the $names array.
-   *                           If $flip = false, adds     root field name     => title
-   *                           If $flip = true, adds      actual field name   => id
+   *   $flip, creates new elements in $params for each field in
+   *   the $names array.
+   *   If $flip = false, adds root field name => title
+   *   If $flip = true, adds actual field name => id
    *
    * @param array $names
    *   Reference array of fieldnames we want transformed.
-   *                           Array key = 'postName' (field name submitted by form in $params).
-   *                           Array value = array(
-  'newName' => $newName, 'groupName' => $groupName).
+   *   Array key = 'postName' (field name submitted by form in $params).
+   *   Array value = array('newName' => $newName, 'groupName' => $groupName).
    *
    *
    * @param bool $flip
index 01b376940064d000be57138a2e226c192a37218e..f8614955249f00e19c57efa65e321c3948c19525 100644 (file)
@@ -37,8 +37,8 @@ class CRM_Core_Payment_AuthorizeNetIPN extends CRM_Core_Payment_BaseIPN {
   /**
    * Constructor function
    *
-   * @param $inputData
-   *   Array contents of HTTP REQUEST.
+   * @param array $inputData
+   *   contents of HTTP REQUEST.
    *
    * @throws CRM_Core_Exception
    */
index d0c84142b38a17403a3fa5fff481d32474c07935..a1a10e4fe08b90444f3175dad72e062d3699f21b 100644 (file)
@@ -260,7 +260,7 @@ class CRM_Core_Payment_Realex extends CRM_Core_Payment {
   /**
    * Helper function to convert XML string to multi-dimension array.
    *
-   * @param $xml
+   * @param string $xml
    *   an XML string.
    *
    * @return array An array of the result with following keys:
@@ -297,8 +297,8 @@ class CRM_Core_Payment_Realex extends CRM_Core_Payment {
     return $result;
   }
 
-  // private helper for  xml_parse_into_assoc, to recusively parsing the result
   /**
+   * Private helper for  xml_parse_into_assoc, to recusively parsing the result
    * @param $input
    * @param int $depth
    *
index d478d2db16b509ee30dabc96d4c1210b49bedd6d..ba5844af16907eb7d06d3bcf334f697f151de9dc 100644 (file)
@@ -1677,8 +1677,7 @@ ORDER BY name";
    * Given a state ID return the country ID, this allows
    * us to populate forms and values for downstream code
    *
-   * @param $stateID
-   *   Int.
+   * @param int $stateID
    *
    * @return int the country id that the state belongs to
    * @static
@@ -1838,8 +1837,8 @@ WHERE  id = %1
   /**
    * Fetch the list of active extensions of type 'module'
    *
-   * @param $fresh
-   *   Bool whether to forcibly reload extensions list from canonical store.
+   * @param bool $fresh
+   *   Whether to forcibly reload extensions list from canonical store.
    * @static
    *
    * @return array - array(array('prefix' => $, 'file' => $))
index 417b1ecaa1e5d3fde86df153c2242fa553c1b7b9..c920250e03be40a588e9f69d2553ee7643e11af7 100644 (file)
@@ -84,7 +84,7 @@ class CRM_Core_Region {
    * Note: This function does not perform any extra encoding of markup, script code, or etc. If
    * you're passing in user-data, you must clean it yourself.
    *
-   * @param $snippet
+   * @param array $snippet
    *   Array; keys:.
    *   - type: string (auto-detected for markup, template, callback, script, scriptUrl, jquery, style, styleUrl)
    *   - name: string, optional
index 8430d009dd0aa6ad5d1d6535dfbb73730e05ea4b..97f03f5d84f55f4e6177ca435a73bf84890a964f 100644 (file)
@@ -102,8 +102,8 @@ class CRM_Core_Resources {
   /**
    * Get or set the single instance of CRM_Core_Resources
    *
-   * @param $instance
-   *   CRM_Core_Resources, new copy of the manager.
+   * @param CRM_Core_Resources $instance
+   *   New copy of the manager.
    * @return CRM_Core_Resources
    */
   static public function singleton(CRM_Core_Resources $instance = NULL) {
@@ -152,14 +152,14 @@ class CRM_Core_Resources {
   /**
    * Add a JavaScript file to the current page using <SCRIPT SRC>.
    *
-   * @param $ext
-   *   String, extension name; use 'civicrm' for core.
-   * @param $file
-   *   String, file path -- relative to the extension base dir.
-   * @param $weight
-   *   Int, relative weight within a given region.
-   * @param $region
-   *   String, location within the file; 'html-header', 'page-header', 'page-footer'.
+   * @param string $ext
+   *   extension name; use 'civicrm' for core.
+   * @param string $file
+   *   file path -- relative to the extension base dir.
+   * @param int $weight
+   *   relative weight within a given region.
+   * @param string $region
+   *   location within the file; 'html-header', 'page-header', 'page-footer'.
    * @param $translate, whether to parse this file for strings enclosed in ts()
    *
    * @return CRM_Core_Resources
@@ -181,12 +181,11 @@ class CRM_Core_Resources {
   /**
    * Add a JavaScript file to the current page using <SCRIPT SRC>.
    *
-   * @param $url
-   *   String.
-   * @param $weight
-   *   Int, relative weight within a given region.
-   * @param $region
-   *   String, location within the file; 'html-header', 'page-header', 'page-footer'.
+   * @param string $url
+   * @param int $weight
+   *   relative weight within a given region.
+   * @param string $region
+   *   location within the file; 'html-header', 'page-header', 'page-footer'.
    * @return CRM_Core_Resources
    */
   public function addScriptUrl($url, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
@@ -203,12 +202,12 @@ class CRM_Core_Resources {
   /**
    * Add a JavaScript file to the current page using <SCRIPT SRC>.
    *
-   * @param $code
-   *   String, JavaScript source code.
-   * @param $weight
-   *   Int, relative weight within a given region.
-   * @param $region
-   *   String, location within the file; 'html-header', 'page-header', 'page-footer'.
+   * @param string $code
+   *   JavaScript source code.
+   * @param int $weight
+   *   relative weight within a given region.
+   * @param string $region
+   *   location within the file; 'html-header', 'page-header', 'page-footer'.
    * @return CRM_Core_Resources
    */
   public function addScript($code, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
@@ -250,8 +249,7 @@ class CRM_Core_Resources {
    * This function is usually reserved for low-level system use.
    * Extensions and components should generally use addVars instead.
    *
-   * @param $settings
-   *   Array.
+   * @param array $settings
    * @return CRM_Core_Resources
    */
   public function addSetting($settings) {
@@ -353,8 +351,7 @@ class CRM_Core_Resources {
    * CRM_Core_Resources::singleton()->addSetting(array('myNamespace' => array('myString' => ts('Your %1 has been %2', array(subs)))));
    * And from javascript access it at CRM.myNamespace.myString
    *
-   * @param $text
-   *   String|array.
+   * @param string|array $text
    * @return CRM_Core_Resources
    */
   public function addString($text) {
@@ -372,14 +369,14 @@ class CRM_Core_Resources {
   /**
    * Add a CSS file to the current page using <LINK HREF>.
    *
-   * @param $ext
-   *   String, extension name; use 'civicrm' for core.
-   * @param $file
-   *   String, file path -- relative to the extension base dir.
-   * @param $weight
-   *   Int, relative weight within a given region.
-   * @param $region
-   *   String, location within the file; 'html-header', 'page-header', 'page-footer'.
+   * @param string $ext
+   *   extension name; use 'civicrm' for core.
+   * @param string $file
+   *   file path -- relative to the extension base dir.
+   * @param int $weight
+   *   relative weight within a given region.
+   * @param string $region
+   *   location within the file; 'html-header', 'page-header', 'page-footer'.
    * @return CRM_Core_Resources
    */
   public function addStyleFile($ext, $file, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
@@ -389,12 +386,11 @@ class CRM_Core_Resources {
   /**
    * Add a CSS file to the current page using <LINK HREF>.
    *
-   * @param $url
-   *   String.
-   * @param $weight
-   *   Int, relative weight within a given region.
-   * @param $region
-   *   String, location within the file; 'html-header', 'page-header', 'page-footer'.
+   * @param string $url
+   * @param int $weight
+   *   relative weight within a given region.
+   * @param string $region
+   *   location within the file; 'html-header', 'page-header', 'page-footer'.
    * @return CRM_Core_Resources
    */
   public function addStyleUrl($url, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
@@ -411,12 +407,12 @@ class CRM_Core_Resources {
   /**
    * Add a CSS content to the current page using <STYLE>.
    *
-   * @param $code
-   *   String, CSS source code.
-   * @param $weight
-   *   Int, relative weight within a given region.
-   * @param $region
-   *   String, location within the file; 'html-header', 'page-header', 'page-footer'.
+   * @param string $code
+   *   CSS source code.
+   * @param int $weight
+   *   relative weight within a given region.
+   * @param string $region
+   *   location within the file; 'html-header', 'page-header', 'page-footer'.
    * @return CRM_Core_Resources
    */
   public function addStyle($code, $weight = self::DEFAULT_WEIGHT, $region = self::DEFAULT_REGION) {
@@ -433,10 +429,10 @@ class CRM_Core_Resources {
   /**
    * Determine file path of a resource provided by an extension
    *
-   * @param $ext
-   *   String, extension name; use 'civicrm' for core.
-   * @param $file
-   *   String, file path -- relative to the extension base dir.
+   * @param string $ext
+   *   extension name; use 'civicrm' for core.
+   * @param string $file
+   *   file path -- relative to the extension base dir.
    *
    * @return bool|string (string|bool), full file path or FALSE if not found
    */
@@ -452,10 +448,10 @@ class CRM_Core_Resources {
   /**
    * Determine public URL of a resource provided by an extension
    *
-   * @param $ext
-   *   String, extension name; use 'civicrm' for core.
-   * @param $file
-   *   String, file path -- relative to the extension base dir.
+   * @param string $ext
+   *   extension name; use 'civicrm' for core.
+   * @param string $file
+   *   file path -- relative to the extension base dir.
    * @param bool $addCacheCode
    *
    * @return string, URL
@@ -588,10 +584,10 @@ class CRM_Core_Resources {
   /**
    * Translate strings in a javascript file
    *
-   * @param $ext
-   *   String, extension name.
-   * @param $file
-   *   String, file path.
+   * @param string $ext
+   *   extension name.
+   * @param string $file
+   *   file path.
    * @return void
    */
   private function translateScript($ext, $file) {
index a018d5636e773b16b8853a23a32529b0c1436ee9..6bc89eb9f2d168dc4e07c04cdd15023c0986921f 100644 (file)
@@ -473,16 +473,13 @@ class CRM_Core_Session {
   /**
    * Stores an alert to be displayed to the user via crm-messages
    *
-   * @param $text
-   *   String.
+   * @param string $text
    *   The status message
    *
-   * @param $title
-   *   String.
+   * @param string $title
    *   The optional title of this message
    *
-   * @param $type
-   *   String.
+   * @param string $type
    *   The type of this message (printed as a css class). Possible options:
    *     - 'alert' (default)
    *     - 'info'
@@ -491,8 +488,7 @@ class CRM_Core_Session {
    *               until the user dismisses it)
    *     - 'no-popup' (will display in the document like old-school)
    *
-   * @param $options
-   *   Array.
+   * @param array $options
    *   Additional options. Possible values:
    *     - 'unique' (default: true) Check if this message was already set before adding
    *     - 'expires' how long to display this message before fadeout (in ms)
index 9b122cd824622b99bcc5d5ed0d779714c218b059..afa289b6ecb34dd88c4c901fabbf193d866099f1 100644 (file)
@@ -255,15 +255,15 @@ class CRM_Event_BAO_Event extends CRM_Event_DAO_Event {
   /**
    * Get current/future Events
    *
-   * @param $all
-   *   Int 0 returns current and future events.
+   * @param int $all
+   *   0 returns current and future events.
    *                                  1 if events all are required
    *                                  2 returns events since 3 months ago
    * @param bool|int $id int id of a specific event to return
-   * @param $isActive
-   *   Boolean true if you need only active events.
-   * @param $checkPermission
-   *   Boolean true if you need to check permission else false.
+   * @param bool $isActive
+   *   true if you need only active events.
+   * @param bool $checkPermission
+   *   true if you need to check permission else false.
    *
    * @return array
    * @static
index 4a2008823b2db4605dfb90cc405140cd154ec13c..5d35657d66e3e4c8907171969e81783303ab5b17 100644 (file)
@@ -38,10 +38,10 @@ class CRM_Event_BAO_ParticipantPayment extends CRM_Event_DAO_ParticipantPayment
   /**
    * Creates or updates a participant payment record
    *
-   * @param $params
-   *   Array of values to initialize the record with.
-   * @param $ids
-   *   Array with one values of id for this participantPayment record (for update).
+   * @param array $params
+   *   of values to initialize the record with.
+   * @param array $ids
+   *   with one values of id for this participantPayment record (for update).
    *
    * @return object the partcipant payment record
    * @static
index 9f668d3245b79b7a5c00c861a433088d627ecc14..dc937c0e95613d8f246f0d7dd705b4aed3009ee6 100644 (file)
@@ -1023,7 +1023,7 @@ WHERE  v.option_group_id = g.id
   /* Format user submitted price set params.
    * Convert price set each param as an array.
    *
-   * @param $params
+   * @param array $params
    *   An array of user submitted params.
    *
    *
index 0766cf98dee4c7447e3bb1b6e2482a43b3a32b98..cf94324e5b43d9fbd89563a6685c8acf73b94c9f 100755 (executable)
@@ -264,8 +264,8 @@ class CRM_Extension_Mapper {
   /**
    * Fetch the list of active extensions of type 'module'
    *
-   * @param $fresh
-   *   Bool whether to forcibly reload extensions list from canonical store.
+   * @param bool $fresh
+   *   whether to forcibly reload extensions list from canonical store.
    * @return array - array(array('prefix' => $, 'file' => $))
    */
   public function getActiveModuleFiles($fresh = FALSE) {
index 11efca71cc4a4b71e9122562c9bf9f308b72f07f..749ec38478bec16043df0d516356a0588a710059 100644 (file)
@@ -235,7 +235,7 @@ abstract class CRM_Import_Parser {
   /**
    * Set and validate field values
    *
-   * @param $elements
+   * @param array $elements
    *   : array.
    * @param $erroneousField
    *   : reference.
index d5e7608d58545b8e2e60488f95e23f031862cb58..2cd7b80006664e06da18df9dad02b2506b0b3e57 100644 (file)
@@ -213,12 +213,12 @@ AND    TABLE_NAME LIKE 'log_civicrm_%'
   /**
    * Add missing (potentially specified) log table columns for the given table.
    *
-   * @param $table
-   *   String name of the relevant table.
-   * @param $cols
+   * @param string $table
+   *   name of the relevant table.
+   * @param array $cols
    *   Mixed array of columns to add or null (to check for the missing columns).
-   * @param $rebuildTrigger
-   *   Boolean should we rebuild the triggers.
+   * @param bool $rebuildTrigger
+   *   should we rebuild the triggers.
    *
    * @return void
    */
index c016b194f34c8d1e3753e1402be5b3454d199e55..a4eeefb70af0e518cb5c6245beeffcdb0485ae16 100644 (file)
@@ -2710,8 +2710,8 @@ SELECT  $mailing.id as mailing_id
   /**
    * Get the content/components of mailing based on mailing Id
    *
-   * @param $report
-   *   Array of mailing report.
+   * @param array $report
+   *   of mailing report.
    *
    * @param $form
    *   Reference of this.
index 43e2da35e5f4fdd83bea1a7d44e81930ae7b0e8a..8918b2d30e1c54130a682fbdc28918c4035cb49b 100644 (file)
@@ -193,8 +193,8 @@ class CRM_Member_Form extends CRM_Contribute_Form_AbstractEditPayment {
    * If the member & contributor are the same then the values will be the same. But if different people paid
    * then they weill differ
    *
-   * @param $formValues
-   *   Array values from form. The important values we are looking for are.
+   * @param array $formValues
+   *   values from form. The important values we are looking for are.
    *  - contact_id
    *  - soft_credit_contact_id
    */
index cf5ca5e0d2e70d4218055e0fa3542ac38d756bde..b50072f14afeaf62a7fd20225e1875879baea516 100644 (file)
@@ -138,10 +138,10 @@ AND li.entity_id = {$entityId}
    * Given a participant id/contribution id,
    * return contribution/fee line items
    *
-   * @param $entityId
-   *   Int participant/contribution id.
-   * @param $entity
-   *   String participant/contribution.
+   * @param int $entityId
+   *   participant/contribution id.
+   * @param string $entity
+   *   participant/contribution.
    *
    * @param null $isQuick
    * @param bool $isQtyZero
@@ -535,7 +535,7 @@ AND li.entity_id = {$entityId}
   /**
    * Calculate tax rate in percentage
    *
-   * @param $lineItemId
+   * @param array $lineItemId
    *   An assoc array of lineItem.
    *
    * @return tax rate
index 384ce13dd4d76d9f5bd345d81f81ce1f009cfead..c139b1bc814c65d5e82fb5a4cffd369dfb46f5fa 100644 (file)
@@ -41,8 +41,8 @@ class CRM_Profile_Page_Router extends CRM_Core_Page {
   /**
    * This is some kind of special-purpose router/front-controller for the various profile URLs.
    *
-   * @param $args
-   *   Array this array contains the arguments of the url.
+   * @param array $args
+   *   this array contains the arguments of the url.
    *
    * @return string|void
    * @static
index 2aa3dc1ffa420c89b3ef49b4428d9e3d5ebfb9d4..2114c9e575573f5edce4f9d2b09157a8878b2b00 100644 (file)
@@ -548,12 +548,12 @@ SET    version = '$version'
   /**
    * Fill the queue with upgrade tasks
    *
-   * @param $currentVer
-   *   String, the original revision.
-   * @param $latestVer
-   *   String, the target (final) revision.
-   * @param $postUpgradeMessageFile
-   *   String, path of a modifiable file which lists the post-upgrade messages.
+   * @param string $currentVer
+   *   the original revision.
+   * @param string $latestVer
+   *   the target (final) revision.
+   * @param string $postUpgradeMessageFile
+   *   path of a modifiable file which lists the post-upgrade messages.
    *
    * @return CRM_Queue
    */
@@ -616,8 +616,8 @@ SET    version = '$version'
    * Perform an incremental version update
    *
    * @param CRM_Queue_TaskContext $ctx
-   * @param $rev
-   *   String, the target (intermediate) revision e.g '3.2.alpha1'.
+   * @param string $rev
+   *   the target (intermediate) revision e.g '3.2.alpha1'.
    *
    * @return bool
    */
@@ -635,14 +635,14 @@ SET    version = '$version'
    * Perform an incremental version update
    *
    * @param CRM_Queue_TaskContext $ctx
-   * @param $rev
-   *   String, the target (intermediate) revision e.g '3.2.alpha1'.
-   * @param $originalVer
-   *   String, the original revision.
-   * @param $latestVer
-   *   String, the target (final) revision.
-   * @param $postUpgradeMessageFile
-   *   String, path of a modifiable file which lists the post-upgrade messages.
+   * @param string $rev
+   *   the target (intermediate) revision e.g '3.2.alpha1'.
+   * @param string $originalVer
+   *   the original revision.
+   * @param string $latestVer
+   *   the target (final) revision.
+   * @param string $postUpgradeMessageFile
+   *   path of a modifiable file which lists the post-upgrade messages.
    *
    * @return bool
    */
@@ -700,14 +700,14 @@ SET    version = '$version'
    * Perform an incremental version update
    *
    * @param CRM_Queue_TaskContext $ctx
-   * @param $rev
-   *   String, the target (intermediate) revision e.g '3.2.alpha1'.
-   * @param $currentVer
-   *   String, the original revision.
-   * @param $latestVer
-   *   String, the target (final) revision.
-   * @param $postUpgradeMessageFile
-   *   String, path of a modifiable file which lists the post-upgrade messages.
+   * @param string $rev
+   *   the target (intermediate) revision e.g '3.2.alpha1'.
+   * @param string $currentVer
+   *   the original revision.
+   * @param string $latestVer
+   *   the target (final) revision.
+   * @param string $postUpgradeMessageFile
+   *   path of a modifiable file which lists the post-upgrade messages.
    *
    * @return bool
    */
@@ -751,8 +751,8 @@ SET    version = '$version'
    * by calling the 'setPreUpgradeMessage' on each incremental upgrade
    * object.
    *
-   * @param $preUpgradeMessage
-   *   String, alterable.
+   * @param string $preUpgradeMessage
+   *   alterable.
    * @param $currentVer
    * @param $latestVer
    */
index 7743a01e00205e7996b01feac5651af676ee545f..e2c1b090c65677fadbac7c74b9553103080de813 100644 (file)
@@ -42,8 +42,8 @@ class CRM_Upgrade_Incremental_Legacy {
   /**
    * Compute any messages which should be displayed before upgrade
    *
-   * @param $preUpgradeMessage
-   *   String, alterable.
+   * @param string $preUpgradeMessage
+   *   alterable.
    * @param $currentVer
    * @param $latestVer
    */
@@ -205,10 +205,10 @@ SELECT  id
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    * @return void
    */
   public static function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
@@ -272,8 +272,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_2_2_alpha1($rev) {
     for ($stepID = 1; $stepID <= 4; $stepID++) {
@@ -317,8 +317,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_2_1_2($rev) {
     $formName = "CRM_Upgrade_TwoOne_Form_TwoOneTwo";
@@ -359,8 +359,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_2_2_beta1($rev) {
     if (!CRM_Core_DAO::checkFieldExists('civicrm_pcp_block', 'notify_email')) {
@@ -374,8 +374,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_2_2_beta2($rev) {
     $template = CRM_Core_Smarty::singleton();
@@ -396,8 +396,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_2_2_beta3($rev) {
     $template = CRM_Core_Smarty::singleton();
@@ -412,8 +412,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_0_alpha1($rev) {
 
@@ -433,8 +433,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_1_alpha1($rev) {
 
@@ -454,8 +454,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_2_2_7($rev) {
     $upgrade = new CRM_Upgrade_Form();
@@ -487,8 +487,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_0_2($rev) {
 
@@ -510,8 +510,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_0_4($rev) {
     //make sure 'Deceased' membership status present in db,CRM-5636
@@ -531,8 +531,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_1_0($rev) {
     // upgrade all roles who have 'access CiviEvent' permission, to also have
@@ -560,8 +560,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_1_3($rev) {
     $threeOne = new CRM_Upgrade_ThreeOne_ThreeOne();
@@ -574,8 +574,8 @@ SELECT  count( id ) as statusCount
   /**
    * Perform an incremental upgrade
    *
-   * @param $rev
-   *   String, the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
+   * @param string $rev
+   *   the revision to which we are upgrading (Note: When processing a series of upgrades, this is the immediate upgrade - not the final).
    */
   public static function upgrade_3_1_4($rev) {
     $threeOne = new CRM_Upgrade_ThreeOne_ThreeOne();
index 3ef5a1ac8e348703bdc7a5f134f62c21c0f8004a..43b5f688a615774e268fa0ca72ff98193192c02e 100644 (file)
@@ -50,8 +50,8 @@ class CRM_Upgrade_Incremental_php_FourFive {
    * revision to the database.
    *
    * @param $preUpgradeMessage
-   * @param $rev
-   *   String, a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
+   * @param string $rev
+   *   a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
    * @param null $currentVer
    *
    * @return void
@@ -62,10 +62,10 @@ class CRM_Upgrade_Incremental_php_FourFive {
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    * @return void
    */
   public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
@@ -153,10 +153,10 @@ DROP KEY `{$dao->CONSTRAINT_NAME}`";
    *
    *
    * @param CRM_Queue_TaskContext $ctx
-   * @param $startId
-   *   Int, the first/lowest entity ID to convert.
-   * @param $endId
-   *   Int, the last/highest entity ID to convert.
+   * @param int $startId
+   *   the first/lowest entity ID to convert.
+   * @param int $endId
+   *   the last/highest entity ID to convert.
    * @param
    *
    * @return bool
index 16b80da6e569d99381839d9adbcb96e9553ff85e..df9b09e049c7598ef6bea45f99376f209034c693 100644 (file)
@@ -52,8 +52,8 @@ class CRM_Upgrade_Incremental_php_FourFour {
    * revision to the database.
    *
    * @param $preUpgradeMessage
-   * @param $rev
-   *   String, a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
+   * @param string $rev
+   *   a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
    * @param null $currentVer
    *
    * @return void
@@ -78,10 +78,10 @@ class CRM_Upgrade_Incremental_php_FourFour {
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    * @return void
    */
   public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
index f11c4d2652f1e28bb786e12de6109397036f400c..ddfb7c721ffe96ca417c14fc8ede32ad025e812f 100644 (file)
@@ -56,10 +56,10 @@ class CRM_Upgrade_Incremental_php_FourOne {
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    *
    * @return void
    */
index 084aadd7df1b2f3bcfad512b4fae3d82e5f72d82..3befdf7d2e58e90f1e4230cc92afa9943e83cc12 100644 (file)
@@ -50,8 +50,8 @@ class CRM_Upgrade_Incremental_php_FourSix {
    * revision to the database.
    *
    * @param $preUpgradeMessage
-   * @param $rev
-   *   String, a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
+   * @param string $rev
+   *   a version number, e.g. '4.4.alpha1', '4.4.beta3', '4.4.0'.
    * @param null $currentVer
    *
    * @return void
@@ -62,10 +62,10 @@ class CRM_Upgrade_Incremental_php_FourSix {
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    * @return void
    */
   public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
index c56e650680a5327f0860b1b70cd1aaa1172bb412..95df8d485b921d1e083644657a41eea52c0fe827 100644 (file)
@@ -51,8 +51,8 @@ class CRM_Upgrade_Incremental_php_FourThree {
    * revision to the database.
    *
    * @param $preUpgradeMessage
-   * @param $rev
-   *   String, a version number, e.g. '4.3.alpha1', '4.3.beta3', '4.3.0'.
+   * @param string $rev
+   *   a version number, e.g. '4.3.alpha1', '4.3.beta3', '4.3.0'.
    * @param null $currentVer
    *
    * @return void|bool
@@ -118,10 +118,10 @@ WHERE {$key}.id IS NULL";
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    * @return void
    */
   public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
index 7c9b4a33e4da0aa2148df6c183a16986ea53a7c2..b33e7826db80aadf4261214b35b65598edc3fb11 100644 (file)
@@ -53,8 +53,8 @@ class CRM_Upgrade_Incremental_php_FourTwo {
    * revision to the database.
    *
    * @param $preUpgradeMessage
-   * @param $rev
-   *   String, a version number, e.g. '4.2.alpha1', '4.2.beta3', '4.2.0'.
+   * @param string $rev
+   *   a version number, e.g. '4.2.alpha1', '4.2.beta3', '4.2.0'.
    * @param null $currentVer
    *
    * @return void
@@ -149,10 +149,10 @@ INNER JOIN civicrm_price_set cps ON cps.id = cpf.price_set_id AND cps.name <>'de
   /**
    * Compute any messages which should be displayed after upgrade
    *
-   * @param $postUpgradeMessage
-   *   String, alterable.
-   * @param $rev
-   *   String, an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
+   * @param string $postUpgradeMessage
+   *   alterable.
+   * @param string $rev
+   *   an intermediate version; note that setPostUpgradeMessage is called repeatedly with different $revs.
    * @return void
    */
   public function setPostUpgradeMessage(&$postUpgradeMessage, $rev) {
@@ -596,10 +596,10 @@ WHERE     cpse.price_set_id IS NULL";
    * records.
    *
    * @param CRM_Queue_TaskContext $ctx
-   * @param $startId
-   *   Int, the first/lowest contribution ID to convert.
-   * @param $endId
-   *   Int, the last/highest contribution ID to convert.
+   * @param int $startId
+   *   the first/lowest contribution ID to convert.
+   * @param int $endId
+   *   the last/highest contribution ID to convert.
    *
    * @return bool
    */
@@ -744,10 +744,10 @@ WHERE     cpf.price_set_id = %1
    * records.
    *
    * @param CRM_Queue_TaskContext $ctx
-   * @param $startId
-   *   Int, the first/lowest participant ID to convert.
-   * @param $endId
-   *   Int, the last/highest participant ID to convert.
+   * @param int $startId
+   *   the first/lowest participant ID to convert.
+   * @param int $endId
+   *   the last/highest participant ID to convert.
    *
    * @return bool
    */
index 1927415b813afdd447a12755860503b32e62c89c..9d696b190c21efcf000e5a03e3378ba05a1ae7a8 100644 (file)
@@ -97,10 +97,10 @@ class CRM_Upgrade_Snapshot_V4p2_Price_BAO_LineItem extends CRM_Upgrade_Snapshot_
    * Given a participant id/contribution id,
    * return contribution/fee line items
    *
-   * @param $entityId
-   *   Int participant/contribution id.
-   * @param $entity
-   *   String participant/contribution.
+   * @param int $entityId
+   *   participant/contribution id.
+   * @param string $entity
+   *   participant/contribution.
    *
    * @param null $isQuick
    *
index f1d4a23f176b1c87fb84a15cadb00d1a798a4beb..4b258bf71d6253ada2a73f8f7fde89c33fb854d7 100644 (file)
@@ -1784,8 +1784,8 @@ class CRM_Utils_Date {
   /**
    * Get the time in UTC for the current time. You can optionally send an offset from the current time if needed
    *
-   * @param $offset
-   *   Int the offset from the current time in seconds.
+   * @param int $offset
+   *   the offset from the current time in seconds.
    *
    * @return the time in UTC
    * @static
index 9be565ecc85e7b1d69d1d6746044974a9e7c758b..a9a5d63844bed8398466c51d44b484be78e658bb 100644 (file)
@@ -569,8 +569,7 @@ HTACCESS;
    *
    * TODO: Automatic file cleanup using, eg, TTL policy
    *
-   * @param $prefix
-   *   String.
+   * @param string $prefix
    *
    * @return string, path to an openable/writable file
    * @see tempnam
@@ -588,8 +587,7 @@ HTACCESS;
    *
    * TODO: Automatic file cleanup using, eg, TTL policy
    *
-   * @param $prefix
-   *   String.
+   * @param string $prefix
    *
    * @return string, path to an openable/writable directory; ends with '/'
    * @see tempnam
@@ -606,10 +604,10 @@ HTACCESS;
    *
    * Note: Dot-directories (like "..", ".git", or ".svn") will be ignored.
    *
-   * @param $dir
-   *   String, base dir.
-   * @param $pattern
-   *   String, glob pattern, eg "*.txt".
+   * @param string $dir
+   *   base dir.
+   * @param string $pattern
+   *   glob pattern, eg "*.txt".
    * @return array(string)
    */
   public static function findFiles($dir, $pattern) {
index e01e62cea1a1aba543356717e47be716ff8442ac..5764519258bd02c8ba451e5b9ca9f98ee2421771 100644 (file)
@@ -60,9 +60,9 @@ class CRM_Utils_Signer {
   /**
    * Instantiate a signature-processor
    *
-   * @param $secret
-   *   String, private.
-   * @param $paramNames
+   * @param string $secret
+   *   private.
+   * @param array $paramNames
    *   Array, fields which should be part of the signature.
    */
   public function __construct($secret, $paramNames) {
@@ -76,10 +76,10 @@ class CRM_Utils_Signer {
   /**
    * Generate a signature for a set of key-value pairs
    *
-   * @param $params
+   * @param array $params
    *   Array, key-value pairs.
-   * @param $salt
-   *   String, the salt (if known) or NULL (for auto-generated).
+   * @param string $salt
+   *   the salt (if known) or NULL (for auto-generated).
    * @return string, the full public token representing the signature
    */
   public function sign($params, $salt = NULL) {
@@ -111,9 +111,9 @@ class CRM_Utils_Signer {
   /**
    * Determine whether a token represents a proper signature for $params
    *
-   * @param $token
-   *   String, the full public token representing the signature.
-   * @param $params
+   * @param string $token
+   *   the full public token representing the signature.
+   * @param array $params
    *   Array, key-value pairs.
    *
    * @throws Exception
index 39c250d6975ad4b73919a2ccf811ee5d7bdfa7ee..8797047bf5ccd933829122a3ce6b567b14a22ce5 100644 (file)
@@ -322,8 +322,8 @@ class CRM_Utils_System_Drupal extends CRM_Utils_System_DrupalBase {
    * Add a script file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -351,8 +351,8 @@ class CRM_Utils_System_Drupal extends CRM_Utils_System_DrupalBase {
    * Add an inline script
    *
    * @param $code: string, javascript code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -378,8 +378,8 @@ class CRM_Utils_System_Drupal extends CRM_Utils_System_DrupalBase {
    * Add a css file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -401,8 +401,8 @@ class CRM_Utils_System_Drupal extends CRM_Utils_System_DrupalBase {
    * Add an inline style
    *
    * @param $code: string, css code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -925,9 +925,8 @@ AND    u.status = 1
    * Find any users/roles/security-principals with the given permission
    * and replace it with one or more permissions.
    *
-   * @param $oldPerm
-   *   String.
-   * @param $newPerms
+   * @param string $oldPerm
+   * @param array $newPerms
    *   Array, strings.
    *
    * @return void
index c3e76133c97de39b2266d160e3f6617a61ccc8f2..d3cd66780f74bd677e268dd831d11cd2b3454a1d 100644 (file)
@@ -333,8 +333,8 @@ class CRM_Utils_System_Drupal6 extends CRM_Utils_System_DrupalBase {
    * Add a script file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -350,8 +350,8 @@ class CRM_Utils_System_Drupal6 extends CRM_Utils_System_DrupalBase {
    * Add an inline script
    *
    * @param $code: string, javascript code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -367,8 +367,8 @@ class CRM_Utils_System_Drupal6 extends CRM_Utils_System_DrupalBase {
    * Add a css file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -387,8 +387,8 @@ class CRM_Utils_System_Drupal6 extends CRM_Utils_System_DrupalBase {
    * Add an inline style
    *
    * @param $code: string, css code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -866,9 +866,8 @@ class CRM_Utils_System_Drupal6 extends CRM_Utils_System_DrupalBase {
    * Find any users/roles/security-principals with the given permission
    * and replace it with one or more permissions.
    *
-   * @param $oldPerm
-   *   String.
-   * @param $newPerms
+   * @param string $oldPerm
+   * @param array $newPerms
    *   Array, strings.
    *
    * @return void
index 03645dadc57e1854c046576c5f4dfc30981ce7db..1793bb9426b11ec279cb1858e2c1407dda465fce 100644 (file)
@@ -294,8 +294,8 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
    * Add a script file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -323,8 +323,8 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
    * Add an inline script
    *
    * @param $code: string, javascript code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -350,8 +350,8 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
    * Add a css file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -373,8 +373,8 @@ class CRM_Utils_System_Drupal8 extends CRM_Utils_System_DrupalBase {
    * Add an inline style
    *
    * @param $code: string, css code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
index afeaf0c5bbe6f93193f008e3b1b26fc13d024338..d58979baeb3c9911720b6fe1df04102152856d91 100644 (file)
@@ -143,22 +143,22 @@ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base {
   /**
    * Generate an internal CiviCRM URL (copied from DRUPAL/includes/common.inc#url)
    *
-   * @param $path
-   *   String The path being linked to, such as "civicrm/add".
-   * @param $query
-   *   String A query string to append to the link.
-   * @param $absolute
-   *   Boolean Whether to force the output to be an absolute link (beginning with http:).
+   * @param string $path
+   *   The path being linked to, such as "civicrm/add".
+   * @param string $query
+   *   A query string to append to the link.
+   * @param bool $absolute
+   *   Whether to force the output to be an absolute link (beginning with http:).
    *                           Useful for links that will be displayed outside the site, such as in an
    *                           RSS feed.
-   * @param $fragment
-   *   String A fragment identifier (named anchor) to append to the link.
-   * @param $htmlize
-   *   Boolean whether to convert to html eqivalant.
-   * @param $frontend
-   *   Boolean a gross joomla hack.
-   * @param $forceBackend
-   *   Boolean a gross joomla hack.
+   * @param string $fragment
+   *   A fragment identifier (named anchor) to append to the link.
+   * @param bool $htmlize
+   *   whether to convert to html eqivalant.
+   * @param bool $frontend
+   *   a gross joomla hack.
+   * @param bool $forceBackend
+   *   a gross joomla hack.
    *
    * @return string an HTML string containing a link to the given path.
    *
@@ -336,9 +336,8 @@ abstract class CRM_Utils_System_DrupalBase extends CRM_Utils_System_Base {
    * Find any users/roles/security-principals with the given permission
    * and replace it with one or more permissions.
    *
-   * @param $oldPerm
-   *   String.
-   * @param $newPerms
+   * @param string $oldPerm
+   * @param array $newPerms
    *   Array, strings.
    *
    * @return void
index 1e1691a783448a0e161929759e8087afc993c975..319919910ab8f3738f395c6549204fc7f2425d60 100644 (file)
@@ -265,8 +265,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
    * Add a script file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -281,8 +281,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
    * Add an inline script
    *
    * @param $code: string, javascript code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -297,8 +297,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
    * Add a css file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -318,8 +318,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
    * Add an inline style
    *
    * @param $code: string, css code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -338,20 +338,20 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
   /**
    * Generate an internal CiviCRM URL
    *
-   * @param $path
-   *   String The path being linked to, such as "civicrm/add".
-   * @param $query
-   *   String A query string to append to the link.
-   * @param $absolute
-   *   Boolean Whether to force the output to be an absolute link (beginning with http:).
+   * @param string $path
+   *   The path being linked to, such as "civicrm/add".
+   * @param string $query
+   *   A query string to append to the link.
+   * @param bool $absolute
+   *   Whether to force the output to be an absolute link (beginning with http:).
    *                           Useful for links that will be displayed outside the site, such as in an
    *                           RSS feed.
-   * @param $fragment
-   *   String A fragment identifier (named anchor) to append to the link.
-   * @param $htmlize
-   *   Boolean whether to convert to html eqivalant.
-   * @param $frontend
-   *   Boolean a gross joomla hack.
+   * @param string $fragment
+   *   A fragment identifier (named anchor) to append to the link.
+   * @param bool $htmlize
+   *   whether to convert to html eqivalant.
+   * @param bool $frontend
+   *   a gross joomla hack.
    *
    * @param bool $forceBackend
    *
@@ -468,8 +468,8 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
    *   The user name.
    * @param string $password
    *   The password for the above user name.
-   * @param $loadCMSBootstrap
-   *   Boolean load cms bootstrap?.
+   * @param bool $loadCMSBootstrap
+   *   load cms bootstrap?.
    *
    * @return mixed false if no auth
    *               array(
@@ -639,10 +639,10 @@ class CRM_Utils_System_Joomla extends CRM_Utils_System_Base {
   /**
    * Load joomla bootstrap
    *
-   * @param $params
-   *   Array with uid or name and password.
-   * @param $loadUser
-   *   Boolean load cms user?.
+   * @param array $params
+   *   with uid or name and password.
+   * @param bool $loadUser
+   *   load cms user?.
    * @param bool|\throw $throwError throw error on failure?
    * @param null $realPath
    * @param bool $loadDefines
index 760c651e3dc591a649918ca73a0c5a0f7cb820c3..d3df9a21104e9b8864456e9b8c98a61fe2e6444f 100644 (file)
@@ -99,16 +99,16 @@ class CRM_Utils_System_Soap extends CRM_Utils_System_Base {
   /**
    * Generate an internal CiviCRM URL
    *
-   * @param $path
-   *   String The path being linked to, such as "civicrm/add".
-   * @param $query
-   *   String A query string to append to the link.
-   * @param $absolute
-   *   Boolean Whether to force the output to be an absolute link (beginning with http:).
+   * @param string $path
+   *   The path being linked to, such as "civicrm/add".
+   * @param string $query
+   *   A query string to append to the link.
+   * @param bool $absolute
+   *   Whether to force the output to be an absolute link (beginning with http:).
    *                           Useful for links that will be displayed outside the site, such as in an
    *                           RSS feed.
-   * @param $fragment
-   *   String A fragment identifier (named anchor) to append to the link.
+   * @param string $fragment
+   *   A fragment identifier (named anchor) to append to the link.
    *
    * @return string            an HTML string containing a link to the given path.
    *
index 398fd221e076931f41af09a6cbd6eab9ea70358b..ed34adf0809389fa48b34a28970e5aa07415a71b 100644 (file)
@@ -152,22 +152,22 @@ class CRM_Utils_System_UnitTests extends CRM_Utils_System_Drupal {
   /**
    * Generate an internal CiviCRM URL (copied from DRUPAL/includes/common.inc#url)
    *
-   * @param $path
-   *   String The path being linked to, such as "civicrm/add".
-   * @param $query
-   *   String A query string to append to the link.
-   * @param $absolute
-   *   Boolean Whether to force the output to be an absolute link (beginning with http:).
+   * @param string $path
+   *   The path being linked to, such as "civicrm/add".
+   * @param string $query
+   *   A query string to append to the link.
+   * @param bool $absolute
+   *   Whether to force the output to be an absolute link (beginning with http:).
    *                           Useful for links that will be displayed outside the site, such as in an
    *                           RSS feed.
-   * @param $fragment
-   *   String A fragment identifier (named anchor) to append to the link.
-   * @param $htmlize
-   *   Boolean whether to convert to html eqivalant.
-   * @param $frontend
-   *   Boolean a gross joomla hack.
-   * @param $forceBackend
-   *   Boolean a gross joomla hack.
+   * @param string $fragment
+   *   A fragment identifier (named anchor) to append to the link.
+   * @param bool $htmlize
+   *   whether to convert to html eqivalant.
+   * @param bool $frontend
+   *   a gross joomla hack.
+   * @param bool $forceBackend
+   *   a gross joomla hack.
    *
    * @return string an HTML string containing a link to the given path.
    *
index 918f4ea8bc29df550d923f20a3ef4a7fbacd120d..73c6f54d904da1e311ce0f92e260f37925039aa7 100644 (file)
@@ -174,8 +174,8 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
    * Add a script file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -190,8 +190,8 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
    * Add an inline script
    *
    * @param $code: string, javascript code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -206,8 +206,8 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
    * Add a css file
    *
    * @param $url: string, absolute path to file
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -222,8 +222,8 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
    * Add an inline style
    *
    * @param $code: string, css code
-   * @param $region
-   *   String, location within the document: 'html-header', 'page-header', 'page-footer'.
+   * @param string $region
+   *   location within the document: 'html-header', 'page-header', 'page-footer'.
    *
    * Note: This function is not to be called directly
    * @see CRM_Core_Region::render()
@@ -267,20 +267,20 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
   /**
    * Generate an internal CiviCRM URL (copied from DRUPAL/includes/common.inc#url)
    *
-   * @param $path
-   *   String The path being linked to, such as "civicrm/add".
-   * @param $query
-   *   String A query string to append to the link.
-   * @param $absolute
-   *   Boolean Whether to force the output to be an absolute link (beginning with http:).
+   * @param string $path
+   *   The path being linked to, such as "civicrm/add".
+   * @param string $query
+   *   A query string to append to the link.
+   * @param bool $absolute
+   *   Whether to force the output to be an absolute link (beginning with http:).
    *                           Useful for links that will be displayed outside the site, such as in an
    *                           RSS feed.
-   * @param $fragment
-   *   String A fragment identifier (named anchor) to append to the link.
-   * @param $htmlize
-   *   Boolean whether to convert to html eqivalant.
-   * @param $frontend
-   *   Boolean a gross joomla hack.
+   * @param string $fragment
+   *   A fragment identifier (named anchor) to append to the link.
+   * @param bool $htmlize
+   *   whether to convert to html eqivalant.
+   * @param bool $frontend
+   *   a gross joomla hack.
    *
    * @param bool $forceBackend
    *
@@ -488,10 +488,10 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base {
   /**
    * Load wordpress bootstrap
    *
-   * @param $name
-   *   String optional username for login.
-   * @param $pass
-   *   String optional password for login.
+   * @param string $name
+   *   optional username for login.
+   * @param string $pass
+   *   optional password for login.
    *
    * @return bool
    */
index 90fb4ce49a0a8d74b0bd458f7997e93595d81d3b..7bf57a67f7b09222a83e14b7a0d5edc51993b035 100644 (file)
@@ -1085,7 +1085,7 @@ class CRM_Utils_Token {
   /**
    * Get array of string tokens
    *
-   * @param $string
+   * @param string $string
    *   The input string to parse for tokens.
    *
    * @return array $tokens array of tokens mentioned in field@access public
index c445ce69033e9a28f3250e8c00b524b4bb61a592..c8929efba4b38ff45b33ade62af11bae5a9654e2 100644 (file)
@@ -122,11 +122,11 @@ class CRM_Utils_Zip {
    * An inefficient helper for creating a ZIP file from data in memory.
    * This is only intended for building temp files for unit-testing.
    *
-   * @param $zipName
-   *   String, file name.
-   * @param $dirs
+   * @param string $zipName
+   *   file name.
+   * @param array $dirs
    *   Array, list of directory paths.
-   * @param $files
+   * @param array $files
    *   Array, keys are file names and values are file contents.
    * @return bool
    */
index 39de0fa11dc17fd47dd66e3e224c6abb7994190e..c12141a9a7c1f92d37e2bfd51010e745a083eb71 100644 (file)
@@ -1563,8 +1563,8 @@ class CRM_Contact_BAO_ContactTest extends CiviUnitTestCase {
    * Create a contact and perform a series of steps with it; after each
    * step, ensure that the contact's modified_date has increased.
    *
-   * @param $callbacks
-   *   Array ($name => $callable).
+   * @param array $callbacks
+   *   ($name => $callable).
    */
   public function _testTimestamps($callbacks) {
     CRM_Core_DAO::triggerRebuild();
index 1a77612a018fac3ce26017e24a02a84204c4e5d4..163dad82bb91c48726650c167a4680f15ef16783 100644 (file)
@@ -164,10 +164,9 @@ class CRM_Contact_BAO_GroupContactCacheTest extends CiviUnitTestCase {
   /**
    * Assert that the cache for a group contains exactly the listed contacts
    *
-   * @param $expectedContactIds
+   * @param array $expectedContactIds
    *   Array(int).
-   * @param $groupId
-   *   Int.
+   * @param int $groupId
    */
   public function assertCacheMatches($expectedContactIds, $groupId) {
     $sql = 'SELECT contact_id FROM civicrm_group_contact_cache WHERE group_id = %1';
@@ -228,8 +227,8 @@ class CRM_Contact_BAO_GroupContactCacheTest extends CiviUnitTestCase {
   }
 
   /**
-   * @param $objects
-   *   Array DAO or BAO objects.
+   * @param array $objects
+   *   DAO or BAO objects.
    */
   public function registerTestObjects($objects) {
     //if (is_object($objects)) {
index 09563970e30e167dacc1fbccc560d68f9b2401bc..7fc842483695cb8ac3c88233ed713a0d3ad410f8 100644 (file)
@@ -914,8 +914,8 @@ class CRM_Core_BAO_ActionScheduleTest extends CiviUnitTestCase {
   }
 
   /**
-   * @param $objects
-   *   Array DAO or BAO objects.
+   * @param array $objects
+   *   DAO or BAO objects.
    */
   public function registerTestObjects($objects) {
     //if (is_object($objects)) {
index 5d3bb4e2fd7fc4199cadeaea6f6e01fa925d3b5d..41acb07624400b7cd47ebd5636017aea301f9823 100644 (file)
@@ -147,9 +147,8 @@ class CRM_Utils_StringTest extends CiviUnitTestCase {
 
   /**
    * @param $input
-   * @param $expected
-   *   Bool.
-   * @dataProvider booleanDataProvider
+   * @param bool $expected
+   *     * @dataProvider booleanDataProvider
    */
   public function testStrToBool($input, $expected) {
     $actual = CRM_Utils_String::strtobool($input);
index 7bc484bcd4621828bb69c647c59de1a987702ce6..becd53385ed5fd17ee883558b3a62b7eb0ec1666 100644 (file)
@@ -191,10 +191,10 @@ class CiviSeleniumTestCase extends PHPUnit_Extensions_SeleniumTestCase {
   /**
    * Open an internal path beginning with 'civicrm/'
    *
-   * @param $url
-   *   (str) omit the 'civicrm/' it will be added for you.
-   * @param $args
-   *   (str|array) optional url arguments.
+   * @param string $url
+   *   omit the 'civicrm/' it will be added for you.
+   * @param string|array $args
+   *   optional url arguments.
    * @param $waitFor
    *   Page element to wait for - using this is recommended to ensure the document is fully loaded.
    *
@@ -953,8 +953,8 @@ class CiviSeleniumTestCase extends PHPUnit_Extensions_SeleniumTestCase {
   /**
    * Create new relationship type w/ user specified params or default.
    *
-   * @param $params
-   *   Array of required params.
+   * @param array $params
+   *   of required params.
    *
    * @return an array of saved params values.
    */
index 895153016a6b3b35e374a4aa5b327cc40a9849aa..b892ad0449c7c574cab89fadcfc5b1e044e82924 100755 (executable)
@@ -2093,8 +2093,8 @@ class CiviUnitTestCase extends PHPUnit_Extensions_Database_TestCase {
    *
    * @param string $function
    *   __FUNCTION__.
-   * @param $filename
-   *   String $file __FILE__.
+   * @param string $filename
+   *   $file __FILE__.
    *
    * @return array $ids ids of created objects
    */
index 37a7693145dc38d0f8b87dba1ef3e60e61d4da61..38b6f9eebea78cea1eacb21e86e6a08a8f81a064 100644 (file)
@@ -229,8 +229,8 @@ class WebTest_Contact_InlineFieldsEditTest extends CiviSeleniumTestCase {
   /**
    * Click on an inline-edit block and wait for it to open
    *
-   * @param $block
-   *   String selector.
+   * @param string $block
+   *   selector.
    * @param bool $wait
    */
   private function openInlineForm($block, $wait = TRUE) {
@@ -244,10 +244,9 @@ class WebTest_Contact_InlineFieldsEditTest extends CiviSeleniumTestCase {
   /**
    * Enter values in an inline edit block and save
    *
-   * @param $block
-   *   String selector.
-   * @param $params
-   *   Array.
+   * @param string $block
+   *   selector.
+   * @param array $params
    * @param \str|string $valid str: submit behavior
    *   'error' if we are expecting a form validation error,
    *   're_open' (default) after saving, opens the form and validate inputs
index 2bd49113985aabc37084e8b1c676434af3cf21f9..f6ce61eb3d285c3b3123beb07b7127c6c728f721 100644 (file)
@@ -146,8 +146,8 @@ class api_v3_APIStandardsTest extends CiviUnitTestCase {
 
   /**
    * Require once  Files
-   * @param $files
-   *   Array list of files to load.
+   * @param array $files
+   *   list of files to load.
    */
   public function requireOnceFilesArray($files) {
     foreach ($files as $key => $file) {