MagicMerge - Per-request cache of path/url properties
[civicrm-core.git] / CRM / Core / BAO / UFJoin.php
index b795fe56be9c67da15a136eb60dff71446061678..ba9dbf3fa269d9c92b165600a7014932f0cc4df0 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.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
 class CRM_Core_BAO_UFJoin extends CRM_Core_DAO_UFJoin {
 
   /**
-   * Takes an associative array and creates a uf join object
+   * Takes an associative array and creates a uf join object.
    *
    * @param array $params
    *   (reference) an assoc array of name/value pairs.
    *
    * @return CRM_Core_DAO_UFJoin
-   * @static
    */
   public static function &create($params) {
     // see if a record exists with the same weight
@@ -97,7 +96,6 @@ class CRM_Core_BAO_UFJoin extends CRM_Core_DAO_UFJoin {
    *
    * @return int
    *   or null
-   * @static
    */
   public static function findJoinEntryId(&$params) {
     if (!empty($params['id'])) {
@@ -135,7 +133,6 @@ class CRM_Core_BAO_UFJoin extends CRM_Core_DAO_UFJoin {
    *
    * @return int
    *   or null
-   * @static
    */
   public static function findUFGroupId(&$params) {
 
@@ -182,4 +179,5 @@ class CRM_Core_BAO_UFJoin extends CRM_Core_DAO_UFJoin {
     }
     return array($first, $second, $firstActive, $secondActive);
   }
+
 }