Merge pull request #5550 from civicrm/4.5
[civicrm-core.git] / CRM / Core / BAO / Extension.php
index bc785846a90d297ce7f60bc747dead9b6cc6f6b6..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,12 +76,11 @@ 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 $fullName
-   *   String, the fully-qualified name (eg "com.example.myextension").
-   * @param $schemaVersion
-   *   String.
+   * @param string $fullName
+   *   the fully-qualified name (eg "com.example.myextension").
+   * @param string $schemaVersion
    * @return void
    */
   public static function setSchemaVersion($fullName, $schemaVersion) {
@@ -95,10 +93,10 @@ 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 $fullName
-   *   String, the fully-qualified name (eg "com.example.myextension").
+   * @param string $fullName
+   *   the fully-qualified name (eg "com.example.myextension").
    * @return string
    */
   public static function getSchemaVersion($fullName) {