style fixes based upon updated phpcs Drupal standard
[civicrm-core.git] / CRM / Member / Form / Task / Print.php
index 4176c001a90b969582c2215036e994704eea18d8..1b85dca26b2a41aa7eeadfde40bb79ee2f5d62be 100644 (file)
@@ -78,18 +78,17 @@ class CRM_Member_Form_Task_Print extends CRM_Member_Form_Task {
     // just need to add a javacript to popup the window for printing
     //
     $this->addButtons(array(
-        array(
-          'type' => 'next',
-          'name' => ts('Print Members'),
-          'js' => array('onclick' => 'window.print()'),
-          'isDefault' => TRUE,
-        ),
-        array(
-          'type' => 'back',
-          'name' => ts('Done'),
-        ),
-      )
-    );
+      array(
+        'type' => 'next',
+        'name' => ts('Print Members'),
+        'js' => array('onclick' => 'window.print()'),
+        'isDefault' => TRUE,
+      ),
+      array(
+        'type' => 'back',
+        'name' => ts('Done'),
+      ),
+    ));
   }
 
   /**