Drop Table before returning from function
[civicrm-core.git] / CRM / Report / Interface.php
index eb3532de10d4fdda34d7a184b393da53fe2387a1..34920bbbf231e6ce731e52612f84b30cfc1bb7a3 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2015                                |
+ | Copyright CiviCRM LLC (c) 2004-2017                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2015
- * $Id$
- *
+ * @copyright CiviCRM LLC (c) 2004-2017
  */
 interface CRM_Report_Interface {
 
   /**
    * The constructor gets the submitted form values.
    *
-   * @param $formValues
+   * @param array $formValues
    */
   public function __construct(&$formValues);
 
   /**
    * Builds the quickform for this search.
-   * @param $form
+   *
+   * @param CRM_Core_Form $form
    */
   public function buildForm(&$form);
 
@@ -55,13 +54,13 @@ interface CRM_Report_Interface {
    */
 
   /**
-   * Count of records that match the current input parameters
-   * Used by pager
+   * Count of records that match the current input parameters Used by pager.
    */
   public function count();
 
   /**
-   * Summary information for the query that can be displayed in the template
+   * Summary information for the query that can be displayed in the template.
+   *
    * This is useful to pass total / sub total information if needed
    */
   public function summary();
@@ -76,8 +75,6 @@ interface CRM_Report_Interface {
    * @param int $offset
    * @param int $rowcount
    * @param string $sort
-   *
-   * @return
    */
   public function contactIDs($offset = 0, $rowcount = 0, $sort = NULL);
 
@@ -88,8 +85,6 @@ interface CRM_Report_Interface {
    * @param int $rowcount
    * @param string $sort
    * @param bool $includeContactIDs
-   *
-   * @return
    */
   public function all(
     $offset = 0, $rowcount = 0, $sort = NULL,