Merge branch '4.5' into master
[civicrm-core.git] / CRM / Report / Form / Contribute / PCP.php
index 695156785be6db71d0634a9e4233465d19fc6580..72709a3ea61011a8e4d8cb8559f625c7674e8aa9 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  */
 class CRM_Report_Form_Contribute_PCP extends CRM_Report_Form {
   /**
-   *
    */
   /**
-   *
    */
   public function __construct() {
     $this->_columns = array(
@@ -278,22 +275,22 @@ LEFT JOIN civicrm_contribution_page {$this->_aliases['civicrm_contribution_page'
     $statistics['counts']['goal_total'] = array(
       'title' => ts('Goal Total'),
       'value' => $dao->goal_total,
-      'type' => CRM_Utils_Type::T_MONEY
+      'type' => CRM_Utils_Type::T_MONEY,
     );
     $statistics['counts']['committed_total'] = array(
       'title' => ts('Total Committed'),
       'value' => $dao->committed_total,
-      'type' => CRM_Utils_Type::T_MONEY
+      'type' => CRM_Utils_Type::T_MONEY,
     );
     $statistics['counts']['received_total'] = array(
       'title' => ts('Total Received'),
       'value' => $dao->received_total,
-      'type' => CRM_Utils_Type::T_MONEY
+      'type' => CRM_Utils_Type::T_MONEY,
     );
     $statistics['counts']['donors_total'] = array(
       'title' => ts('Total Donors'),
       'value' => $dao->donors_total,
-      'type' => CRM_Utils_Type::T_INT
+      'type' => CRM_Utils_Type::T_INT,
     );
     return $statistics;
   }