Merge pull request #5145 from agh1/case-insensitive-headers
[civicrm-core.git] / CRM / Core / BAO / Extension.php
index c6f90cf24bcbd344fc4ba9f8532646c6f37862c8..936efbea8f3358dec75b586445509eca133abf90 100644 (file)
@@ -24,7 +24,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -40,7 +40,7 @@
 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.
@@ -49,7 +49,6 @@ class CRM_Core_BAO_Extension extends CRM_Core_DAO_Extension {
    *
    * @return CRM_Core_BAO_LocationType|null
    *   object on success, null otherwise
-   * @static
    */
   public static function retrieve(&$params, &$defaults) {
     $extension = new CRM_Core_DAO_Extension();
@@ -62,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();
@@ -78,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").
@@ -95,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").