INFRA-132 - Misc
[civicrm-core.git] / api / v3 / ParticipantPayment.php
index d9f5cfda01329ddc80030ee879c887ca8413dd05..be5ff03ba830885cbd78fcfaa1544eff315210c8 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  *
  */
 
-/**
- * Files required for this package
- */
-
 /**
  * Create a Event Participant Payment
  *
@@ -52,9 +47,9 @@
  * @example ParticipantPaymentCreate.php
  * {@example ParticipantPaymentCreate.php 0}
  *
- * @return array of newly created payment property values.
+ * @return array
+ *   Array of newly created payment property values.
  * {@getfields ParticipantPayment_create}
- * @access public
  */
 function civicrm_api3_participant_payment_create($params) {
 
@@ -89,10 +84,10 @@ function _civicrm_api3_participant_payment_create_spec(&$params) {
  *
  * @param array $params
  *
- * @return array API result
+ * @return array
+ *   API result
  * @example ParticipantPaymentDelete.php
  * {@getfields ParticipantPayment_delete}
- * @access public
  */
 function civicrm_api3_participant_payment_delete($params) {
   $participant = new CRM_Event_BAO_ParticipantPayment();
@@ -106,12 +101,11 @@ function civicrm_api3_participant_payment_delete($params) {
  * @param array $params
  *   Input parameters.
  *
- * @return array  array of properties, if error an array with an error id and error message
- *  @example ParticipantPaymentGet
+ * @return array
+ *   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);
 }
-