INFRA-132 - Misc
[civicrm-core.git] / api / v3 / PriceField.php
index 0e5800cd28caa5a5c73e9d1901211993514c5bd0..048f71595c0fc7fc83a46e0ebf2c5c4917f92c8a 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-/*
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
@@ -24,7 +23,7 @@
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 
 /**
@@ -43,9 +42,9 @@
  *                       name/value pairs to insert in new 'price_field'
  * @example PriceFieldCreate.php Std Create example
  *
- * @return array api result array
- * {@getfields price_field_create}
- * @access public
+ * @return array
+ *   api result array
+ *   {@getfields price_field_create}
  */
 function civicrm_api3_price_field_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -67,11 +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
+ * @return array
+ *   Array of matching price_fields
+ *   {@getfields price_field_get}
  */
 function civicrm_api3_price_field_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -85,11 +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
+ * @return array
+ *   API result array
+ *   {@getfields price_field_delete}
  */
 function civicrm_api3_price_field_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);