Add missing PHPDoc types
authorBradley Taylor <hello@brad-taylor.co.uk>
Wed, 31 Aug 2022 11:01:12 +0000 (12:01 +0100)
committerBradley Taylor <hello@brad-taylor.co.uk>
Wed, 31 Aug 2022 11:01:12 +0000 (12:01 +0100)
CRM/Activity/BAO/Activity.php
CRM/Activity/BAO/Query.php
CRM/Contribute/BAO/Query.php
CRM/Logging/Differ.php
CRM/Mailing/BAO/Query.php
CRM/Mailing/Event/BAO/Opened.php
CRM/Report/Form/Contribute/Sybunt.php
ext/civigrant/CRM/Grant/BAO/Query.php

index 35f779e72648b423d0d363c6bbe610437e132c5b..215ac3072f9cc63a8f8cb99343453ddb8eb49717 100644 (file)
@@ -974,8 +974,8 @@ class CRM_Activity_BAO_Activity extends CRM_Activity_DAO_Activity {
    *   The array of contact details to send the email.
    * @param string $subject
    *   The subject of the message.
-   * @param $text
-   * @param $html
+   * @param string|null $text
+   * @param string|null $html
    * @param string $emailAddress
    *   Use this 'to' email address instead of the default Primary address.
    * @param int|null $userID
@@ -1277,7 +1277,7 @@ WHERE entity_id =%1 AND entity_table = %2";
    *
    * @param int $toID
    *   The contact id of the recipient.
-   * @param $tokenText
+   * @param string $tokenText
    * @param array $smsProviderParams
    *   The params used for sending sms.
    * @param int $activityID
@@ -1348,8 +1348,8 @@ WHERE entity_id =%1 AND entity_table = %2";
    *   The contact id of the recipient.
    * @param string $subject
    *   The subject of the message.
-   * @param $text_message
-   * @param $html_message
+   * @param string|null $text_message
+   * @param string|null $html_message
    * @param string $emailAddress
    *   Use this 'to' email address instead of the default Primary address.
    * @param int $activityID
@@ -1723,7 +1723,7 @@ WHERE      activity.id IN ($activityIds)";
   /**
    * Get all prior activities of currently viewed activity.
    *
-   * @param $activityID
+   * @param int $activityID
    *   Current activity id.
    * @param bool $onlyPriorRevisions
    *
index 95bea4d1675303b82383d6a4a45ea0efe75f309e..d147c9fc6f3612381874c3aa17076aefde4b7895 100644 (file)
@@ -344,8 +344,8 @@ class CRM_Activity_BAO_Query {
 
   /**
    * @param string $name
-   * @param $mode
-   * @param $side
+   * @param int $mode
+   * @param string $side
    *
    * @return null|string
    */
index 643d5dcb19dbc88f27b0a6989d9d055232356492..5654fabb0215603546748bde798e029437d2af75 100644 (file)
@@ -493,7 +493,7 @@ class CRM_Contribute_BAO_Query extends CRM_Core_BAO_Query {
    * Get from clause.
    *
    * @param string $name
-   * @param string $mode
+   * @param int $mode
    * @param string $side
    *
    * @return NULL|string
index 643ed05df1b1d22d1ec8165c88bdcca2a28415a0..bca2d054628651bf2591f9332e231a90d797f5b7 100644 (file)
@@ -53,7 +53,7 @@ class CRM_Logging_Differ {
   }
 
   /**
-   * @param $table
+   * @param string $table
    * @param int $contactID
    *
    * @return array
index 983c4654edcea3eabd257cc54a6b8fe9e20d198c..ced2040d768981410c5e0855759b105e3681673c 100644 (file)
@@ -149,8 +149,8 @@ class CRM_Mailing_BAO_Query {
 
   /**
    * @param string $name
-   * @param $mode
-   * @param $side
+   * @param int $mode
+   * @param string $side
    *
    * @return null|string
    */
index 81a57a16a082f1de36310da4fa4130a8e47132f1..4242251291494c5391db43a758e9c00f48650537 100644 (file)
@@ -108,7 +108,7 @@ class CRM_Mailing_Event_BAO_Opened extends CRM_Mailing_Event_DAO_Opened {
    * @see https://issues.civicrm.org/jira/browse/CRM-12814
    * Get opened count for each mailing for a given set of mailing IDs
    *
-   * @param $mailingIDs
+   * @param int[] $mailingIDs
    *
    * @return array
    *   Opened count per mailing ID
index 6c83f631135050044cc71136bc3cfacdbde7e4d3..8f25969dabe00787910e100a51f58623f663ee95 100644 (file)
@@ -503,7 +503,7 @@ class CRM_Report_Form_Contribute_Sybunt extends CRM_Report_Form {
   }
 
   /**
-   * @param $rows
+   * @param array $rows
    */
   public function buildChart(&$rows) {
     $graphRows = [];
index 5247bac153b1c5bbb0fcc79fbb9700356c54efea..503f01e9bdd72aaa136c57936c90bad093e934e4 100644 (file)
@@ -227,8 +227,8 @@ class CRM_Grant_BAO_Query extends CRM_Contact_BAO_Query_Interface {
 
   /**
    * @param string $name
-   * @param $mode
-   * @param $side
+   * @param int $mode
+   * @param string $side
    *
    * @return null|string
    */