INFRA-132 - Misc
[civicrm-core.git] / api / v3 / ParticipantPayment.php
index 76ccc6782fd5fc07cd8ec77926763c989e955142..be5ff03ba830885cbd78fcfaa1544eff315210c8 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  *
  */
 
-/**
- * Files required for this package
- */
-
 /**
  * Create a Event Participant Payment
  *
@@ -53,9 +48,8 @@
  * {@example ParticipantPaymentCreate.php 0}
  *
  * @return array
- *   of newly created payment property values.
+ *   Array of newly created payment property values.
  * {@getfields ParticipantPayment_create}
- * @access public
  */
 function civicrm_api3_participant_payment_create($params) {
 
@@ -94,7 +88,6 @@ function _civicrm_api3_participant_payment_create_spec(&$params) {
  *   API result
  * @example ParticipantPaymentDelete.php
  * {@getfields ParticipantPayment_delete}
- * @access public
  */
 function civicrm_api3_participant_payment_delete($params) {
   $participant = new CRM_Event_BAO_ParticipantPayment();
@@ -112,7 +105,6 @@ function civicrm_api3_participant_payment_delete($params) {
  *   array of properties, if error an array with an error id and error message
  * @example ParticipantPaymentGet
  * {@getfields ParticipantPayment_get}
- * @access public
  */
 function civicrm_api3_participant_payment_get($params) {
   return _civicrm_api3_basic_get('CRM_Event_DAO_ParticipantPayment', $params);