Merge pull request #4863 from totten/master-phpcbf4
[civicrm-core.git] / CRM / Admin / Page / Admin.php
index 58d8992d32a96409ea422d9b22bc2f26ac6c0276..e62f83c667fb7b51551f98cae0635e02dc822a46 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  * Page for displaying Administer CiviCRM Control Panel
  */
 class CRM_Admin_Page_Admin extends CRM_Core_Page {
-  function run() {
+  /**
+   * @return string
+   */
+  public function run() {
     $errorMessage = '';
     // ensure that all CiviCRM tables are InnoDB, else abort
     // this is not a very fast operation, so we do it randomly 10% of the times
@@ -54,7 +57,8 @@ class CRM_Admin_Page_Admin extends CRM_Core_Page {
       CRM_Core_Session::setStatus($errorMessage, ts('Warning'), "alert", array('expires' => 0));
     }
 
-    $groups = array('Customize Data and Screens' => ts('Customize Data and Screens'),
+    $groups = array(
+    'Customize Data and Screens' => ts('Customize Data and Screens'),
       'Communications' => ts('Communications'),
       'Localization' => ts('Localization'),
       'Users and Permissions' => ts('Users and Permissions'),
@@ -116,4 +120,3 @@ class CRM_Admin_Page_Admin extends CRM_Core_Page {
     return parent::run();
   }
 }
-