Merge pull request #5550 from civicrm/4.5
[civicrm-core.git] / CRM / Core / BAO / Extension.php
index 09155244de3a8dec9b280cef9793bfc205719f2f..d69132c53f052dcb380c120e7b5e34418feaec5c 100644 (file)
  | 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_Extension extends CRM_Core_DAO_Extension {
 
   /**
-   * 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.
    * @param array $defaults
    *   (reference ) an assoc array to hold the flattened values.
    *
-   * @return CRM_Core_BAO_LocationType object on success, null otherwise
-   * @static
+   * @return CRM_Core_BAO_LocationType|null
+   *   object on success, null otherwise
    */
   public static function retrieve(&$params, &$defaults) {
     $extension = new CRM_Core_DAO_Extension();
@@ -61,14 +61,13 @@ class CRM_Core_BAO_Extension extends CRM_Core_DAO_Extension {
   }
 
   /**
-   * Delete an extension
+   * Delete an extension.
    *
    * @param int $id
    *   Id of the extension to be deleted.
    *
    * @return void
    *
-   * @static
    */
   public static function del($id) {
     $extension = new CRM_Core_DAO_Extension();
@@ -77,7 +76,7 @@ class CRM_Core_BAO_Extension extends CRM_Core_DAO_Extension {
   }
 
   /**
-   * Change the schema version of an extension
+   * Change the schema version of an extension.
    *
    * @param string $fullName
    *   the fully-qualified name (eg "com.example.myextension").
@@ -94,7 +93,7 @@ class CRM_Core_BAO_Extension extends CRM_Core_DAO_Extension {
   }
 
   /**
-   * Determine the schema version of an extension
+   * Determine the schema version of an extension.
    *
    * @param string $fullName
    *   the fully-qualified name (eg "com.example.myextension").