INFRA-132 - api/ - phpcbf
[civicrm-core.git] / api / v3 / ParticipantStatusType.php
index 43b8b30534cfd6c2f51fa09a08dc692e30d13bec..4b2edc72b8dd69613bb7e2a3dbd57b6b839a8594 100644 (file)
@@ -2,7 +2,7 @@
 
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
@@ -34,8 +34,6 @@
  * @copyright CiviCRM LLC (c) 2004-2014
  */
 
-require_once 'api/v3/utils.php';
-
 /**
  * create/update participant_status
  *
@@ -43,7 +41,8 @@ require_once 'api/v3/utils.php';
  * In case of updating existing participant_status, id of that particular participant_status must
  * be in $params array.
  *
- * @param array $params  (referance) 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
@@ -56,13 +55,14 @@ function civicrm_api3_participant_status_type_create($params) {
 }
 
 /**
- * Returns array of participant_statuss  matching a set of one or more group properties
+ * Returns array of participant_statuses  matching a set of one or more group properties
  *
- * @param array $params  (referance) 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_statuss will be returned
+ *                       as null, all participant_statuses will be returned
  *
- * @return array  (referance) Array of matching participant_statuses
+ * @return array Array of matching participant_statuses
  * {@getfields ParticipantStatusType_get}
  * @example ParticipantStatusTypeGet.php
  * @access public
@@ -77,11 +77,11 @@ 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  (referance) returns flag true if successfull, error
- *                message otherwise
+ * @return array api result array
  * {@getfields ParticipantStatusType_delete}
  * @example ParticipantStatusTypeDelete.php
  * @access public
@@ -93,4 +93,3 @@ function civicrm_api3_participant_status_type_delete($params) {
 
   return civicrm_api3_create_error(TRUE);
 }
-