INFRA-132 - Put "else" and "catch" on new line
[civicrm-core.git] / CRM / Utils / Constant.php
index 8a4164631bc8caea46078dced22282a92ecf8cf0..05c68bf7d6f3b60ea34857d30e1a367eb514053e 100644 (file)
@@ -43,7 +43,8 @@ class CRM_Utils_Constant {
   public static function value($name, $default = NULL) {
     if (defined($name)) {
       return constant($name);
-    } else {
+    }
+    else {
       return $default;
     }
   }