comment fixes
[civicrm-core.git] / CRM / Utils / ReCAPTCHA.php
index c04a181c9dd8901b70dcb7382d906d143802917a..00bc33e6057a2e2afe2a05e4ddcbd2f60768f7b0 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.                                    |
  |                                                                    |
@@ -28,9 +28,7 @@
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
- * $Id$
- *
+ * @copyright CiviCRM LLC (c) 2004-2015
  */
 class CRM_Utils_ReCAPTCHA {
 
@@ -43,16 +41,17 @@ class CRM_Utils_ReCAPTCHA {
   protected $_phrase = NULL;
 
   /**
+   * Singleton.
+   *
    * We only need one instance of this object. So we use the singleton
    * pattern and cache the instance in this variable
    *
-   * @var object
+   * @var CRM_Utils_ReCAPTCHA
    */
   static private $_singleton = NULL;
 
   /**
-   * Singleton function used to manage this object
-   *
+   * Singleton function used to manage this object.
    *
    * @return object
    */
@@ -63,13 +62,14 @@ class CRM_Utils_ReCAPTCHA {
     return self::$_singleton;
   }
 
-  /**
-   */
   public function __construct() {
+    // Empty function?
   }
 
   /**
-   * Add element to form
+   * Add element to form.
+   *
+   * @param CRM_Core_Form $form
    */
   public static function add(&$form) {
     $error = NULL;