More PHPdoc fixes
authorBradley Taylor <hello@brad-taylor.co.uk>
Sun, 11 Sep 2022 13:33:41 +0000 (14:33 +0100)
committerBradley Taylor <hello@brad-taylor.co.uk>
Sun, 11 Sep 2022 13:33:41 +0000 (14:33 +0100)
CRM/Contact/BAO/ContactType.php
CRM/Core/Form/RecurringEntity.php
CRM/Core/Key.php
CRM/Core/OptionValue.php
CRM/Core/Payment/Form.php

index d9bb3e1b2f4c900ce51642cc07723e6b5fb1bfdb..dfafc2c0c751b19453e54c82c68fe355a3c7bb48 100644 (file)
@@ -658,7 +658,7 @@ WHERE contact_sub_type LIKE '%{$subType}%'";
   }
 
   /**
-   * @param $contactType
+   * @param string $contactType
    * @param int $contactId
    *
    * @return bool
@@ -695,7 +695,7 @@ WHERE contact_sub_type LIKE '%{$subType}%'";
   /**
    * @todo what does this function do?
    * @param int $contactId
-   * @param $contactType
+   * @param string $contactType
    *
    * @return bool
    */
index 8db1ec228434c99a3351b0b7600294ba335a8036..e9124dfd40aa863b1217ee59beab1cd13efacb58 100644 (file)
@@ -34,9 +34,9 @@ class CRM_Core_Form_RecurringEntity {
 
   /**
    * Schedule Reminder data
-   * @var array
+   * @var CRM_Core_DAO|null
    */
-  protected static $_scheduleReminderDetails = [];
+  protected static $_scheduleReminderDetails = NULL;
 
   /**
    *  Parent Entity ID
index f42b16c3acde2e3907fe6f9a742a4f15b25c66d3..8bce78373c5aa46d52ef52f0564dbda0322b4655 100644 (file)
@@ -103,7 +103,7 @@ class CRM_Core_Key {
    * @param string $name
    * @param bool $addSequence
    *
-   * @return string
+   * @return string|null
    *   if valid, else null
    */
   public static function validate($key, $name, $addSequence = FALSE) {
index 803a69bfd260a3e60a83e09b32f12bcef3d4cca5..95662e6bd4b99c595fa8d412de4e0f5d60888f2a 100644 (file)
@@ -353,7 +353,7 @@ class CRM_Core_OptionValue {
   /**
    * Build select query in case of option-values
    *
-   * @param $query
+   * @param CRM_Contact_BAO_Query $query
    */
   public static function select(&$query) {
     if (!empty($query->_params) || !empty($query->_returnProperties)) {
index ee37b26c00b021b29185cdabd979caafc2d01d2e..903296d0de4f25ea32eee4177644d99459f7ee9d 100644 (file)
@@ -229,7 +229,7 @@ class CRM_Core_Payment_Form {
    * @param CRM_Core_Form $form
    * @param array $paymentFields
    *   Array of properties including 'object' as loaded from CRM_Financial_BAO_PaymentProcessor::getPaymentProcessors.
-   * @param $paymentFields
+   * @return void
    */
   protected static function addRules(&$form, $paymentFields) {
     foreach ($paymentFields as $paymentField => $fieldSpecs) {
@@ -360,7 +360,7 @@ class CRM_Core_Payment_Form {
    * The date format for this field should typically be "M Y" (ex: Feb 2011) or "m Y" (02 2011)
    * See CRM-9017
    *
-   * @param $src
+   * @param array $src
    *
    * @return int
    */