Merge pull request #4948 from pratikshad/code-cleanup
[civicrm-core.git] / api / v3 / ContributionSoft.php
index 112615e1f0f192f7b4759bb196176b80ffa5b9e3..5134e94f5b51345d26d10dbe537a88d0b3c18d55 100644 (file)
@@ -46,9 +46,9 @@
  *
  * @example ContributionSoftCreate.php Standard Create Example //FIXME
  *
- * @return array API result array
+ * @return array
+ *   API result array
  * {@getfields contribution_soft_create}
- * @access public
  */
 function civicrm_api3_contribution_soft_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -74,9 +74,9 @@ function _civicrm_api3_contribution_soft_create_spec(&$params) {
  *
  * @example ContributionSoftDelete.php Standard Delete Example
  *
- * @return boolean | error  true if successfull, error otherwise
+ * @return boolean
+ *   | error  true if successfull, error otherwise
  * {@getfields contribution_soft_delete}
- * @access public
  */
 function civicrm_api3_contribution_soft_delete($params) {
   // non standard BAO - we have to write custom code to cope
@@ -95,9 +95,9 @@ function civicrm_api3_contribution_soft_delete($params) {
  * @param array $params
  *   An associative array of name/value pairs.
  *
- * @return  array api result
+ * @return array
+ *   api result
  * {@getfields contribution_soft_get}
- * @access public
  */
 function civicrm_api3_contribution_soft_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);