CRM-15988 - Mass cleanup of api entity names to CamelCase
[civicrm-core.git] / api / v3 / FinancialType.php
index 838ada80972966d3f884248c3289ca88de6670af..f1af35e4d6078b4f75b8e75332ceef43f5da527c 100644 (file)
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
- * File for the CiviCRM APIv3 financial_type functions
+ * This api exposes CiviCRM FinancialType.
  *
  * @package CiviCRM_APIv3
- * @subpackage API_financial_type
- *
  */
 
 /**
- * Save a financial_type
- *
- * Allowed @params array keys are:
- * {@getfields financial_type_create}
- * @example financial_typeCreate.php
+ * Save a FinancialType.
  *
  * @param array $params
  *
  * @return array
- *   Array of newly created financial_type property values.
- * @access public
  */
 function civicrm_api3_financial_type_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * Get a financial_type
- *
- * Allowed @params array keys are:
- * {@getfields financial_type_get}
- * @example financial_typeCreate.php
+ * Get a FinancialType.
  *
  * @param array $params
  *
  * @return array
- *   Array of retrieved financial_type property values.
- * @access public
+ *   Array of retrieved FinancialType property values.
  */
 function civicrm_api3_financial_type_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 /**
- * Delete a financial_type
- *
- * Allowed @params array keys are:
- * {@getfields financial_type_delete}
- * @example financial_typeCreate.php
+ * Delete a FinancialType.
  *
  * @param array $params
  *
  * @return array
  *   Array of deleted values.
- * @access public
  */
 function civicrm_api3_financial_type_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);