style fixes based upon updated phpcs Drupal standard
[civicrm-core.git] / CRM / Member / Form / Task / Print.php
index f3d8cff4f5c55591be47e2886b4f635caca2c1bc..1b85dca26b2a41aa7eeadfde40bb79ee2f5d62be 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -28,7 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
@@ -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'),
+      ),
+    ));
   }
 
   /**