Merge pull request #15833 from yashodha/participant_edit
[civicrm-core.git] / CRM / Case / Form / Report.php
index 5cb501fe1934a516de12d044d7892d00e6626e52..27301ee1e61f74f28e143a62745752996d80d946 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 5                                                  |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
+ | Copyright CiviCRM LLC (c) 2004-2020                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2019
+ * @copyright CiviCRM LLC (c) 2004-2020
  */
 
 /**
@@ -38,16 +38,19 @@ class CRM_Case_Form_Report extends CRM_Core_Form {
 
   /**
    * Case Id
+   * @var int
    */
   public $_caseID = NULL;
 
   /**
    * Client Id
+   * @var int
    */
   public $_clientID = NULL;
 
   /**
    * Activity set name
+   * @var string
    */
   public $_activitySetName = NULL;
 
@@ -98,17 +101,16 @@ class CRM_Case_Form_Report extends CRM_Core_Form {
     );
 
     $this->addButtons([
-        [
-          'type' => 'refresh',
-          'name' => ts('Generate Report'),
-          'isDefault' => TRUE,
-        ],
-        [
-          'type' => 'cancel',
-          'name' => ts('Cancel'),
-        ],
-      ]
-    );
+      [
+        'type' => 'refresh',
+        'name' => ts('Generate Report'),
+        'isDefault' => TRUE,
+      ],
+      [
+        'type' => 'cancel',
+        'name' => ts('Cancel'),
+      ],
+    ]);
     // We want this form to redirect to a full page
     $this->preventAjaxSubmit();
   }