comment tweaks (typos etc)
[civicrm-core.git] / api / v3 / ParticipantPayment.php
index f23f627eea887deded855611c61b974f900d2aaa..cc9584dc63361acb3353377b684f78c7be854746 100644 (file)
@@ -1,11 +1,10 @@
 <?php
-// $Id$
 
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.3                                                |
+ | CiviCRM version 4.5                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2013                                |
+ | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
@@ -33,7 +32,7 @@
  * @package CiviCRM_APIv3
  * @subpackage API_Participant
  *
- * @copyright CiviCRM LLC (c) 2004-2013
+ * @copyright CiviCRM LLC (c) 2004-2014
  * @version $Id: Participant.php 30486 2010-11-02 16:12:09Z shot $
  *
  */
@@ -41,7 +40,6 @@
 /**
  * Files required for this package
  */
-require_once 'CRM/Event/BAO/ParticipantPayment.php';
 
 /**
  * Create a Event Participant Payment
@@ -60,7 +58,7 @@ require_once 'CRM/Event/BAO/ParticipantPayment.php';
 function civicrm_api3_participant_payment_create($params) {
 
   $ids = array();
-  if (CRM_Utils_Array::value('id', $params)) {
+  if (!empty($params['id'])) {
     $ids['id'] = $params['id'];
   }
   $participantPayment = CRM_Event_BAO_ParticipantPayment::create($params, $ids);
@@ -73,7 +71,7 @@ function civicrm_api3_participant_payment_create($params) {
 
 /**
  * Adjust Metadata for Create action
- * 
+ *
  * The metadata is used for setting defaults, documentation & validation
  * @param array $params array or parameters determined by getfields
  */
@@ -87,7 +85,9 @@ function _civicrm_api3_participant_payment_create_spec(&$params) {
  *
  * This API is used for deleting a Participant Payment
  *
- * @param  Int  $participantPaymentID   Id of the Participant Payment to be deleted
+ * @param $params
+ *
+ * @internal param Int $participantPaymentID Id of the Participant Payment to be deleted
  *
  * @return array API result
  * @example ParticipantPaymentDelete.php
@@ -101,7 +101,7 @@ function civicrm_api3_participant_payment_delete($params) {
 
 /**
  * Retrieve one / all contribution(s) / participant(s) linked to a
- * contrbution.
+ * contribution.
  *
  * @param  array   $params  input parameters
  *