Merge pull request #14358 from samuelsov/billingblockts
[civicrm-core.git] / CRM / Import / Form / Preview.php
index bed412784b045fa7b61d9e5e54ef1cd146efb603..88810af0ba994f64f13e059e4adafdf82b3524c5 100644 (file)
@@ -38,6 +38,7 @@
  * those classes can be removed entirely and this class will not need to be abstract
  */
 abstract class CRM_Import_Form_Preview extends CRM_Core_Form {
+
   /**
    * Return a descriptive name for the page, used in wizard header.
    *
@@ -51,23 +52,22 @@ abstract class CRM_Import_Form_Preview extends CRM_Core_Form {
    * Build the form object.
    */
   public function buildQuickForm() {
-    $this->addButtons(array(
-        array(
+    $this->addButtons([
+        [
           'type' => 'back',
           'name' => ts('Previous'),
-        ),
-        array(
+        ],
+        [
           'type' => 'next',
           'name' => ts('Import Now'),
           'spacing' => '          ',
           'isDefault' => TRUE,
-        ),
-        array(
+        ],
+        [
           'type' => 'cancel',
           'name' => ts('Cancel'),
-        ),
-      )
-    );
+        ],
+    ]);
   }
 
   /**