infra updated incorrectly set public functions to private on payment classes
[civicrm-core.git] / api / v3 / ActivityContact.php
index d37ef931853fc849ba740ba25c702c479ac78d18..349d0e1b0048c61ead8ccf95cc11a89c6c1d8264 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * File for the CiviCRM APIv3 activity contact functions
@@ -46,8 +45,7 @@
  * @param array $params
  *
  * @return array
- *   of newly created activity contact records.
- * @access public
+ *   Array of newly created activity contact records.
  */
 function civicrm_api3_activity_contact_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -74,7 +72,6 @@ function _civicrm_api3_activity_contact_create_spec(&$params) {
  *   Api Result
  *
  * @example ActivityContact.php
- * @access public
  */
 function civicrm_api3_activity_contact_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -91,7 +88,6 @@ function civicrm_api3_activity_contact_delete($params) {
  * @return array
  *   details of found tags else error
  *
- * @access public
  */
 function civicrm_api3_activity_contact_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);