CRM-15988 - Cleanup internal use of entity names
[civicrm-core.git] / CRM / Core / Key.php
index 6f8aaabac1d72f232060ef1e76b460a14140570d..88b60d02d25a922edc5ba62133a88fd1b56a74d9 100644 (file)
@@ -23,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -38,11 +38,10 @@ class CRM_Core_Key {
   static $_sessionID = NULL;
 
   /**
-   * Generate a private key per session and store in session
+   * Generate a private key per session and store in session.
    *
    * @return string
    *   private key for this session
-   * @static
    */
   public static function privateKey() {
     if (!self::$_key) {
@@ -81,7 +80,6 @@ class CRM_Core_Key {
    *
    * @return string
    *   valid formID
-   * @static
    */
   public static function get($name, $addSequence = FALSE) {
     $privateKey = self::privateKey();
@@ -97,7 +95,7 @@ class CRM_Core_Key {
   }
 
   /**
-   * Validate a form key based on the form name
+   * Validate a form key based on the form name.
    *
    * @param string $key
    * @param string $name
@@ -105,7 +103,6 @@ class CRM_Core_Key {
    *
    * @return string
    *   if valid, else null
-   * @static
    */
   public static function validate($key, $name, $addSequence = FALSE) {
     if (!is_string($key)) {
@@ -156,4 +153,5 @@ class CRM_Core_Key {
     // ensure that hash is a 32 digit hex number
     return preg_match('#[0-9a-f]{32}#i', $hash) ? TRUE : FALSE;
   }
+
 }