Merge pull request #6385 from eileenmcnaughton/cleanup
[civicrm-core.git] / CRM / Utils / Constant.php
index ce9310ddd5cefc06dfb5ba3ab8c5bfb141a1b198..5be61f335c5bc7ed06c6122d7565a0336a513733 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * Class CRM_Utils_Constant
@@ -43,8 +43,10 @@ class CRM_Utils_Constant {
   public static function value($name, $default = NULL) {
     if (defined($name)) {
       return constant($name);
-    } else {
+    }
+    else {
       return $default;
     }
   }
+
 }