Merge pull request #6590 from eileenmcnaughton/CRM-16555
[civicrm-core.git] / CRM / Utils / PseudoConstant.php
index e64774edcf1208dd23a6927a07e89fa1c7750beb..9958d5adbc91b4ea1d1dbd6a1bcda002bf7c1c2a 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.                                    |
  |                                                                    |
@@ -30,7 +30,7 @@
  */
 class CRM_Utils_PseudoConstant {
   /**
-   * CiviCRM pseudoconstant classes for wrapper functions
+   * CiviCRM pseudoconstant classes for wrapper functions.
    */
   private static $constantClasses = array(
     'CRM_Core_PseudoConstant',
@@ -45,7 +45,7 @@ class CRM_Utils_PseudoConstant {
   private static $constants = NULL;
 
   /**
-   * Get constant
+   * Get constant.
    *
    * Wrapper for Pseudoconstant methods. We use this so the calling function
    * doesn't need to know which class the Pseudoconstant is on
@@ -65,7 +65,7 @@ class CRM_Utils_PseudoConstant {
   }
 
   /**
-   * Flush constant
+   * Flush constant.
    *
    * Wrapper for Pseudoconstant methods. We use this so the calling function
    * doesn't need to know which class the Pseudoconstant is on
@@ -90,7 +90,7 @@ class CRM_Utils_PseudoConstant {
   }
 
   /**
-   * Determine where a constant lives
+   * Determine where a constant lives.
    *
    * If there's a full, preloaded map, use it. Otherwise, use search
    * class space.