Merge pull request #7021 from saurabhbatra96/CRM-14756
[civicrm-core.git] / CRM / Utils / Hook.php
index 950ec296e99f2476fc48eba4bd20a0554b2bf958..15bc0bf93bfebc43c65374e2cb7ec803ddbd14f9 100644 (file)
@@ -1966,6 +1966,10 @@ abstract class CRM_Utils_Hook {
 
   /**
    * This hook is called when a query string of the CSV Batch export is generated.
+   *
+   * @param string $query
+   *
+   * @return mixed
    */
   public static function batchQuery(&$query) {
     return self::singleton()->invoke(1, $query, self::$_nullObject,
@@ -1976,6 +1980,11 @@ abstract class CRM_Utils_Hook {
 
   /**
    * This hook is called when the entries of the CSV Batch export are mapped.
+   *
+   * @param array $results
+   * @param array $items
+   *
+   * @return mixed
    */
   public static function batchItems(&$results, &$items) {
     return self::singleton()->invoke(2, $results, $items,