INFRA-132 - Misc
[civicrm-core.git] / api / v3 / PriceField.php
index 4709a89fcf28575a26dd6ab5dfc4732d4abb902c..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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 
 /**
@@ -44,9 +43,8 @@
  * @example PriceFieldCreate.php Std Create example
  *
  * @return array
-   *   api result array
- * {@getfields price_field_create}
- * @access public
+ *   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);
@@ -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
+ *   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);
@@ -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
+ *   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);