Merge pull request #6446 from colemanw/CRM-13160
[civicrm-core.git] / CRM / Financial / Form / Export.php
index e459d0cf38a046da0d11ee8f64410e2efecda805..bea6d36620526aba7c6c088078bf54de27259547 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
@@ -48,22 +48,22 @@ class CRM_Financial_Form_Export extends CRM_Core_Form {
   protected $_id;
 
   /**
-   * Financial batch ids
+   * Financial batch ids.
    */
   protected $_batchIds = array();
 
   /**
-   * Export status id
+   * Export status id.
    */
   protected $_exportStatusId;
 
   /**
-   * Export format
+   * Export format.
    */
   protected $_exportFormat;
 
   /**
-   * Build all the data structures needed to build the form
+   * Build all the data structures needed to build the form.
    *
    * @return void
    */
@@ -111,7 +111,7 @@ class CRM_Financial_Form_Export extends CRM_Core_Form {
   }
 
   /**
-   * Build the form object
+   * Build the form object.
    *
    * @return void
    */
@@ -150,7 +150,7 @@ class CRM_Financial_Form_Export extends CRM_Core_Form {
   }
 
   /**
-   * Process the form after the input has been submitted and validated
+   * Process the form after the input has been submitted and validated.
    *
    * @return void
    */
@@ -185,4 +185,5 @@ class CRM_Financial_Form_Export extends CRM_Core_Form {
 
     CRM_Batch_BAO_Batch::exportFinancialBatch($batchIds, $this->_exportFormat);
   }
+
 }