(NFC) Cleanup new docblocks
authorTim Otten <totten@civicrm.org>
Tue, 15 Jan 2019 00:01:26 +0000 (16:01 -0800)
committerTim Otten <totten@civicrm.org>
Thu, 21 Feb 2019 03:41:34 +0000 (19:41 -0800)
CRM/Core/PrevNextCache/Interface.php
CRM/Core/PrevNextCache/Sql.php

index aa6772c99bdc5bf0cbed608df7ec89a42d7ac6bc..6c355050e7577fdb4c6c2e1cd67a4b4464eb5efa 100644 (file)
@@ -41,8 +41,11 @@ interface CRM_Core_PrevNextCache_Interface {
    *   A SQL query. The query *MUST* be a SELECT statement which yields
    *   the following columns (in order): cacheKey, entity_id1, data
    * @param array $sqlParams
-   *   An array of SQLParams to be used with the $sql
+   *   An array of parameters to be used with $sql.
+   *   Use the same interpolation format as CRM_Core_DAO (composeQuery/executeQuery).
+   *   Ex: [1 => ['foo', 'String']]
    * @return bool
+   * @see CRM_Core_DAO::composeQuery
    */
   public function fillWithSql($cacheKey, $sql, $sqlParams = []);
 
index 38cd490f1b09e10bb642f8bd034854764df5072a..efa1756a0219b7e932d01a79b453b676bca95ab4 100644 (file)
@@ -39,9 +39,12 @@ class CRM_Core_PrevNextCache_Sql implements CRM_Core_PrevNextCache_Interface {
    *   A SQL query. The query *MUST* be a SELECT statement which yields
    *   the following columns (in order): cacheKey, entity_id1, data
    * @param array $sqlParams
-   *   An array of Parameters to be used on the Insert Query
+   *   An array of parameters to be used with $sql.
+   *   Use the same interpolation format as CRM_Core_DAO (composeQuery/executeQuery).
+   *   Ex: [1 => ['foo', 'String']]
    * @return bool
    * @throws CRM_Core_Exception
+   * @see CRM_Core_DAO::composeQuery
    */
   public function fillWithSql($cacheKey, $sql, $sqlParams = []) {
     $insertSQL = "