INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / ParticipantStatusType.php
index 32d7f2707203ed59b5a9e9b6419fce4f6a370d4c..e789623e0f0a436773a873f5a7b0e66cfb6c05f6 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  * In case of updating existing participant_status, id of that particular participant_status must
  * be in $params array.
  *
- * @param array $params Associative array of property
+ * @param array $params
+ *   Associative array of property.
  *                       name/value pairs to insert in new 'participant_status'
  *
- * @return array   participant_status array
+ * @return array
+ *   participant_status array
  * {@getfields ParticipantStatusType_create}
  * @example ParticipantStatusTypeCreate.php
- * @access public
  */
 function civicrm_api3_participant_status_type_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -56,14 +56,15 @@ function civicrm_api3_participant_status_type_create($params) {
 /**
  * Returns array of participant_statuses  matching a set of one or more group properties
  *
- * @param array $params Array of one or more valid
+ * @param array $params
+ *   Array of one or more valid.
  *                       property_name=>value pairs. If $params is set
  *                       as null, all participant_statuses will be returned
  *
- * @return array Array of matching participant_statuses
+ * @return array
+ *   Array of matching participant_statuses
  * {@getfields ParticipantStatusType_get}
  * @example ParticipantStatusTypeGet.php
- * @access public
  */
 function civicrm_api3_participant_status_type_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
@@ -75,13 +76,14 @@ function civicrm_api3_participant_status_type_get($params) {
  * This method is used to delete any existing participant_status. id of the group
  * to be deleted is required field in $params array
  *
- * @param array $params  (reference) array containing id of the group
+ * @param array $params
+ *   (reference) array containing id of the group.
  *                       to be deleted
  *
- * @return array api result array
+ * @return array
+ *   api result array
  * {@getfields ParticipantStatusType_delete}
  * @example ParticipantStatusTypeDelete.php
- * @access public
  */
 function civicrm_api3_participant_status_type_delete($params) {
   if (CRM_Event_BAO_ParticipantStatusType::deleteParticipantStatusType($params['id'])) {
@@ -90,4 +92,3 @@ function civicrm_api3_participant_status_type_delete($params) {
 
   return civicrm_api3_create_error(TRUE);
 }
-