Icon cleanup
[civicrm-core.git] / CRM / Core / BAO / Persistent.php
index 818cb78e11c4b304701148ae775c86c50ff2e6ad..a6b165a4f362af1ce29e92d1a1759076b0d302a5 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -35,7 +35,7 @@
 class CRM_Core_BAO_Persistent extends CRM_Core_DAO_Persistent {
 
   /**
-   * Fetch object based on array of properties
+   * Fetch object based on array of properties.
    *
    * @param array $params
    *   (reference ) an assoc array of name/value pairs.
@@ -43,7 +43,6 @@ class CRM_Core_BAO_Persistent extends CRM_Core_DAO_Persistent {
    *   (reference ) an assoc array to hold the flattened values.
    *
    * @return CRM_Core_BAO_Persistent
-   * @static
    */
   public static function retrieve(&$params, &$defaults) {
     $dao = new CRM_Core_DAO_Persistent();
@@ -60,14 +59,13 @@ class CRM_Core_BAO_Persistent extends CRM_Core_DAO_Persistent {
   }
 
   /**
-   * Add the Persistent Record
+   * Add the Persistent Record.
    *
    * @param array $params
    *   Reference array contains the values submitted by the form.
    * @param array $ids
    *   Reference array contains the id.
    *
-   * @static
    *
    * @return object
    */
@@ -109,4 +107,5 @@ class CRM_Core_BAO_Persistent extends CRM_Core_DAO_Persistent {
       return CRM_Utils_Array::value($name, $contextNameData[$context]);
     }
   }
+
 }