INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / Tag.php
index 5af6853eb9930b4572af10934400d5eb347f16bf..01f6efed539739ad531019ba430d056c015af413 100644 (file)
@@ -44,9 +44,9 @@
  *
  * @param array $params
  *
- * @return array of newly created tag property values.
+ * @return array
+ *   Array of newly created tag property values.
  * {@getfields tag_create}
- * @access public
  */
 function civicrm_api3_tag_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -71,9 +71,9 @@ function _civicrm_api3_tag_create_spec(&$params) {
  *
  * @example TagDelete.ph
  *
- * @return array API result array
+ * @return array
+ *   API result array
  * {@getfields tag_delete}
- * @access public
  */
 function civicrm_api3_tag_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -90,12 +90,11 @@ function civicrm_api3_tag_delete($params) {
  * @param array $params
  *   An associative array of name/value pairs.
  *
- * @return  array details of found tags else error
+ * @return array
+ *   details of found tags else error
  * {@getfields tag_get}
- * @access public
  */
 function civicrm_api3_tag_get($params) {
 
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
-