CRM_Core_DAO - Fix static warning that appears during upgrade
[civicrm-core.git] / api / v3 / LocationType.php
index 3a31c319d93063925ea870154237eee405c2f30e..cb3fc5d80d66b8a8aa627f7479d80ec05b7797f8 100644 (file)
@@ -1,9 +1,8 @@
 <?php
-// $Id$
 
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.3                                                |
+ | CiviCRM version 4.4                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2013                                |
  +--------------------------------------------------------------------+
@@ -48,7 +47,6 @@
  * {@getfields email_create}
  * @access public
  */
-
 function civicrm_api3_location_type_create($params) {
   //set display_name equal to name if it's not defined
   if (!array_key_exists('display_name', $params) && array_key_exists('name', $params)) {
@@ -58,13 +56,12 @@ function civicrm_api3_location_type_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
-/*
+/**
  * Adjust Metadata for Create action
  *
  * The metadata is used for setting defaults, documentation & validation
  * @param array $params array or parameters determined by getfields
  */
-
 function _civicrm_api3_location_type_create_spec(&$params) {
   $params['is_active']['api.default'] = 1;
   $params['name']['api.required'] = 1;
@@ -81,7 +78,6 @@ function _civicrm_api3_location_type_create_spec(&$params) {
  * {@getfields LocationType_delete}
  * @access public
  */
-
 function civicrm_api3_location_type_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
@@ -100,9 +96,7 @@ function civicrm_api3_location_type_delete($params) {
  * {@getfields LocationType_get}
  * @access public
  */
-
 function civicrm_api3_location_type_get($params) {
-
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }