INFRA-132 - Fix incorrect param types
authorColeman Watts <coleman@civicrm.org>
Mon, 12 Jan 2015 03:02:49 +0000 (22:02 -0500)
committerColeman Watts <coleman@civicrm.org>
Mon, 12 Jan 2015 03:02:49 +0000 (22:02 -0500)
20 files changed:
CRM/Activity/Selector/Activity.php
CRM/Activity/Selector/Search.php
CRM/Campaign/Selector/Search.php
CRM/Case/Selector/Search.php
CRM/Contact/BAO/Group.php
CRM/Contact/Selector.php
CRM/Contact/Selector/Custom.php
CRM/Contribute/Selector/Search.php
CRM/Core/Config/Defaults.php
CRM/Core/Permission.php
CRM/Core/Permission/Base.php
CRM/Core/Selector/API.php
CRM/Event/Selector/Search.php
CRM/Grant/Selector/Search.php
CRM/Mailing/Selector/Browse.php
CRM/Mailing/Selector/Event.php
CRM/Mailing/Selector/Search.php
CRM/Member/Selector/Search.php
CRM/Pledge/Selector/Search.php
CRM/Profile/Selector/Listings.php

index 37172af2afb6d327b853924d3ad4261abef6fe14..02606caacb584744f327f13aa145bc031f4a23f4 100644 (file)
@@ -314,7 +314,7 @@ class CRM_Activity_Selector_Activity extends CRM_Core_Selector_Base implements C
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -363,7 +363,7 @@ class CRM_Activity_Selector_Activity extends CRM_Core_Selector_Base implements C
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -371,7 +371,7 @@ class CRM_Activity_Selector_Activity extends CRM_Core_Selector_Base implements C
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @param null $case
index bd06e3bff62c7695b18555d2a226ebf675d38d62..cd71340535363a4e3dc480779364f553df775770 100644 (file)
@@ -223,7 +223,7 @@ class CRM_Activity_Selector_Search extends CRM_Core_Selector_Base implements CRM
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -231,7 +231,7 @@ class CRM_Activity_Selector_Search extends CRM_Core_Selector_Base implements CRM
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -373,7 +373,7 @@ class CRM_Activity_Selector_Search extends CRM_Core_Selector_Base implements CRM
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index 4460958edfbe119ff73799f2732681e1608965d1..d18176eb9c3ef927374c6f7f9254f361b5cacfc3 100755 (executable)
@@ -227,7 +227,7 @@ class CRM_Campaign_Selector_Search extends CRM_Core_Selector_Base implements CRM
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -235,7 +235,7 @@ class CRM_Campaign_Selector_Search extends CRM_Core_Selector_Base implements CRM
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -322,7 +322,7 @@ FROM {$from}
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index 8efdef6aa39156598535e138151c65b1e452a949..78b5e75f21493fae575aa9ce8d544c26b5c8e076 100644 (file)
@@ -285,7 +285,7 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base {
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -293,7 +293,7 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base {
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -428,7 +428,7 @@ class CRM_Case_Selector_Search extends CRM_Core_Selector_Base {
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index bc008a1d09d568332a0974501c80a93d5edefedb..0ff3c40a6b6170de1b204c186d601691f7dfc9a0 100644 (file)
@@ -156,8 +156,8 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
    *
    * @param int $id
    *   Group id.
-   * @param enum|string $status status of members in group
-   *
+   * @param string $status
+   *   status of members in group
    * @param bool $countChildGroups
    *
    * @return int
@@ -229,11 +229,10 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
    *   Limits the set of groups returned.
    * @param array $returnProperties
    *   Which properties should be included in the returned group objects.
-   *                                       (member_count should be last element.)
-   *
-   * @param NULL $sort
-   * @param NULL $offset
-   * @param NULL $rowCount
+   *   (member_count should be last element.)
+   * @param string $sort
+   * @param int $offset
+   * @param int $rowCount
    *
    * @return array
    *   Array of group objects.
@@ -349,7 +348,6 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
    * Create a new group
    *
    * @param array $params
-   *   Associative array of parameters.
    *
    * @return CRM_Contact_BAO_Group|NULL
    *   The new group BAO (if created)
@@ -566,7 +564,7 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
    *   Value we want to set the is_active field.
    *
    * @return CRM_Core_DAO|null
-   *   DAO object on sucess, NULL otherwise
+   *   DAO object on success, NULL otherwise
    * @static
    */
   public static function setIsActive($id, $isActive) {
@@ -578,7 +576,7 @@ class CRM_Contact_BAO_Group extends CRM_Contact_DAO_Group {
    *
    * @param string $groupType
    *   Type of group(Access/Mailing) OR the key of the group.
-   * @param bool|\boolen $excludeHidden exclude hidden groups.
+   * @param bool $excludeHidden exclude hidden groups.
    *
    * @return string
    * @static
index 3c37792145937ee9295ded9444c7847c198d40e6..b870948a184e9f1680580b0862ab046317d416b0 100644 (file)
@@ -338,7 +338,7 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -516,7 +516,7 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -524,7 +524,7 @@ class CRM_Contact_Selector extends CRM_Core_Selector_Base implements CRM_Core_Se
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
index b4ad66c504adfdef4fe758760a7af234569e313e..726d747e7d2529bd4283cbb7a82d833e1cd6c214 100644 (file)
@@ -223,7 +223,7 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -267,7 +267,7 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -275,7 +275,7 @@ class CRM_Contact_Selector_Custom extends CRM_Contact_Selector {
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
index 38f877bb645c873efd7158eb1a87f7f590672484..2a0a97d92aadcf63a4920c90f482e153a543d3db 100644 (file)
@@ -301,7 +301,7 @@ class CRM_Contribute_Selector_Search extends CRM_Core_Selector_Base implements C
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -309,7 +309,7 @@ class CRM_Contribute_Selector_Search extends CRM_Core_Selector_Base implements C
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -444,7 +444,7 @@ class CRM_Contribute_Selector_Search extends CRM_Core_Selector_Base implements C
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index 212ec85ee7b3c9630bb64b9cf4e88f32afd6130a..3bfa82a5eea767cde9dfd4b04464f8b0b6400cbe 100644 (file)
@@ -112,13 +112,13 @@ class CRM_Core_Config_Defaults {
 
   /**
    * Set the default values
+   * in an empty db, also called when setting component using GUI
    *
    * @param array $defaults
    *   Associated array of form elements.
-   * @param bool|\boolena $formMode this funtion is called to set default
-   *                           values in an empty db, also called when setting component using GUI
-   *                           this variable is set true for GUI
-   *                           mode (eg: Global setting >> Components)
+   * @param bool $formMode
+   *   this variable is set true for GUI
+   *   mode (eg: Global setting >> Components)
    *
    * @static
    */
@@ -233,10 +233,9 @@ class CRM_Core_Config_Defaults {
       $defaults['customFileUploadDir'] = $customDir;
     }
 
-    /* FIXME: hack to bypass the step for generating defaults for components,
-                  while running upgrade, to avoid any serious non-recoverable error
-                  which might hinder the upgrade process. */
-
+    // FIXME: hack to bypass the step for generating defaults for components,
+    // while running upgrade, to avoid any serious non-recoverable error
+    // which might hinder the upgrade process.
     $args = array();
     if (isset($_GET[$config->userFrameworkURLVar])) {
       $args = explode('/', $_GET[$config->userFrameworkURLVar]);
index 0218a5bc06eaf114117c9ba04f7353a330f3debe..2fbb94e9cdb1ba39b67d92b6bac88649f43d5904 100644 (file)
@@ -196,7 +196,8 @@ class CRM_Core_Permission {
    *
    * @param string $groupType
    *   Type of group(Access/Mailing).
-   * @param bool|\boolen $excludeHidden exclude hidden groups.
+   * @param bool $excludeHidden
+   *   exclude hidden groups.
    *
    * @static
    *
index 515a8992df0454f30db99adfee919150c8a81d86..5e4f239161dc70a9b7d04cfdeeeefff719af6062 100644 (file)
@@ -122,7 +122,8 @@ class CRM_Core_Permission_Base {
    *
    * @param string $groupType
    *   Type of group(Access/Mailing).
-   * @param bool|\boolen $excludeHidden exclude hidden groups.
+   * @param bool $excludeHidden
+   *   exclude hidden groups.
    *
    *
    * @return array
index 0d48abc5f5f5b4c36bb5aed5525aa0daacf9c49f..b4bb661cf42495b82f5c2a15c9b42ec6bd10df93 100644 (file)
@@ -74,7 +74,7 @@ interface CRM_Core_Selector_API {
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $type
+   * @param string $type
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -95,7 +95,7 @@ interface CRM_Core_Selector_API {
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -103,7 +103,7 @@ interface CRM_Core_Selector_API {
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $type
+   * @param string $type
    *   What should the result set include (web/email/csv).
    *
    * @return int
index c5ffb4b783c6630fc161d6c9d1f7c824b8e3f492..0f05141ec37a7e7be334c3c983dde91922cc01ff 100644 (file)
@@ -295,7 +295,7 @@ class CRM_Event_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -303,7 +303,7 @@ class CRM_Event_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -444,7 +444,7 @@ class CRM_Event_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index 3bd0595360eb4db9e92d633a777f020f2ef2522e..234e81c688538a9e5c8a9df2f2fe40dc85423874 100644 (file)
@@ -260,7 +260,7 @@ class CRM_Grant_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co
   /**
    * Returns all the rows in the given offset and rowCount     *
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -268,7 +268,7 @@ class CRM_Grant_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -348,7 +348,7 @@ class CRM_Grant_Selector_Search extends CRM_Core_Selector_Base implements CRM_Co
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index c5a9b3a707dd09175ce4a1a07898794bc966436a..6bf6d3199073d5297e4df57dc3a3afd6a096ec4f 100644 (file)
@@ -95,7 +95,7 @@ class CRM_Mailing_Selector_Browse extends CRM_Core_Selector_Base implements CRM_
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -211,7 +211,7 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -219,7 +219,7 @@ LEFT JOIN  civicrm_contact scheduledContact ON ( $mailing.scheduled_id = schedul
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
index e63925d0f63c6d643a5c94c1645c7561286c1cd8..c28b955e54c87a1506abc6b3fac8f9db3b438d6d 100644 (file)
@@ -136,7 +136,7 @@ class CRM_Mailing_Selector_Event extends CRM_Core_Selector_Base implements CRM_C
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -334,7 +334,7 @@ class CRM_Mailing_Selector_Event extends CRM_Core_Selector_Base implements CRM_C
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -342,7 +342,7 @@ class CRM_Mailing_Selector_Event extends CRM_Core_Selector_Base implements CRM_C
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
index 14c6eb857439637600c0810bf3d4987a5ede7db3..7df147683145618f5a9e2fb30489f6ce205b7651 100644 (file)
@@ -262,7 +262,7 @@ class CRM_Mailing_Selector_Search extends CRM_Core_Selector_Base implements CRM_
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -270,7 +270,7 @@ class CRM_Mailing_Selector_Search extends CRM_Core_Selector_Base implements CRM_
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -344,7 +344,7 @@ class CRM_Mailing_Selector_Search extends CRM_Core_Selector_Base implements CRM_
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index 063d12eefef351671e17331fa2c7ce78fcc36d62..03daae4bcb8729a91a2d01128b3f2b6942ad86e0 100644 (file)
@@ -312,7 +312,7 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -320,7 +320,7 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -467,7 +467,7 @@ class CRM_Member_Selector_Search extends CRM_Core_Selector_Base implements CRM_C
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index 7fe1428f1bcecedafa857de5946bfd31841bd899..133d2c260e0e5cd9eeb2150e4a015ab83a7ff2f0 100644 (file)
@@ -270,7 +270,7 @@ class CRM_Pledge_Selector_Search extends CRM_Core_Selector_Base {
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -278,7 +278,7 @@ class CRM_Pledge_Selector_Search extends CRM_Core_Selector_Base {
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int
@@ -382,7 +382,7 @@ class CRM_Pledge_Selector_Search extends CRM_Core_Selector_Base {
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
index f0855eb91be02c3b3da7b9abef8594bc40f71fd2..e46149dd3c411242e04619387c9843fa5d34d0cd 100644 (file)
@@ -293,7 +293,7 @@ class CRM_Profile_Selector_Listings extends CRM_Core_Selector_Base implements CR
    *
    * @param string $action
    *   The action being performed.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return array
@@ -432,7 +432,7 @@ class CRM_Profile_Selector_Listings extends CRM_Core_Selector_Base implements CR
   /**
    * Returns all the rows in the given offset and rowCount
    *
-   * @param enum $action
+   * @param string $action
    *   The action being performed.
    * @param int $offset
    *   The row number to start from.
@@ -440,7 +440,7 @@ class CRM_Profile_Selector_Listings extends CRM_Core_Selector_Base implements CR
    *   The number of rows to return.
    * @param string $sort
    *   The sql string that describes the sort order.
-   * @param enum $output
+   * @param string $output
    *   What should the result set include (web/email/csv).
    *
    * @return int