clean up changes for batch 18
[civicrm-core.git] / api / v3 / PriceField.php
index d7dd42d2af8cffd8d6f0dc1d3565e1144db9573b..0fcc744ddcd9f970f874d892b78804583903dbd7 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-/*
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
@@ -45,8 +44,7 @@
  *
  * @return array
  *   api result array
- * {@getfields price_field_create}
- * @access public
+ *   {@getfields price_field_create}
  */
 function civicrm_api3_price_field_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -68,12 +66,11 @@ function _civicrm_api3_price_field_create_spec(&$params) {
  *
  * @param array $params
  *   Array of one or more valid property_name=>value pairs. If $params is set.
- *  as null, all price_fields will be returned (default limit is 25)
+ *   as null, all price_fields will be returned (default limit is 25)
  *
  * @return array
  *   Array of matching price_fields
- * {@getfields price_field_get}
- * @access public
+ *   {@getfields price_field_get}
  */
 function civicrm_api3_price_field_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -87,12 +84,11 @@ function civicrm_api3_price_field_get($params) {
  *
  * @param array $params
  *   Array containing id of the group.
- *  to be deleted
+ *   to be deleted
  *
  * @return array
  *   API result array
- * {@getfields price_field_delete}
- * @access public
+ *   {@getfields price_field_delete}
  */
 function civicrm_api3_price_field_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);