INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / PriceSet.php
index 66ff4b8f76a07430ac7642448a7b5cbb6dc1ec8d..082b22807544fd4871a5440c571451a266140c3d 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-/*
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
@@ -43,9 +42,9 @@
  *                       name/value pairs to insert in new 'price_set'
  * @example PriceSetCreate.php Std Create example
  *
- * @return array api result array
+ * @return array
+ *   api result array
  * {@getfields price_set_create}
- * @access public
  */
 function civicrm_api3_price_set_create($params) {
   $result = _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -81,11 +80,11 @@ function _civicrm_api3_price_set_create_spec(&$params) {
  *
  * @param array $params
  *   Array of one or more valid property_name=>value pairs. If $params is set.
- *  as null, all price_sets will be returned (default limit is 25)
+ *   as null, all price_sets will be returned (default limit is 25)
  *
- * @return array  Array of matching price_sets
+ * @return array
+ *   Array of matching price_sets
  * {@getfields price_set_get}
- * @access public
  */
 function civicrm_api3_price_set_get($params) {
   // hack to make getcount work. - not sure the best approach here
@@ -109,11 +108,11 @@ function civicrm_api3_price_set_get($params) {
  *
  * @param array $params
  *   Array containing id of the group.
- *  to be deleted
+ *   to be deleted
  *
- * @return array API result array
+ * @return array
+ *   API result array
  * {@getfields price_set_delete}
- * @access public
  */
 function civicrm_api3_price_set_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);