INFRA-132 - Remove @static annotation
[civicrm-core.git] / api / v3 / SurveyRespondant.php
index 77b2f750ade335318de9c724ebb96510d8b84682..01c1be3c4c213c083f316538e52b6739ff7155f1 100644 (file)
@@ -1,5 +1,4 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
@@ -35,7 +34,8 @@
 
 /**
  * @deprecated api notice
- * @return string to indicate this entire api entity is deprecated
+ * @return string
+ *   to indicate this entire api entity is deprecated
  */
 function _civicrm_api3_survey_respondant_deprecation() {
   return 'The survey_respondant api is not currently supported.';
@@ -44,10 +44,11 @@ function _civicrm_api3_survey_respondant_deprecation() {
 /**
  * Get the list of signatories
  *
- * @param  array   $params           (reference ) input parameters
+ * @param array $params
+ *   (reference ) input parameters.
  *
- * @return array (reference )        contribution_id of created or updated record
- * @static void
+ * @return array
+ *   (reference )        contribution_id of created or updated record
  * @access public
  * @deprecated - api currently not supported
  */
@@ -65,7 +66,7 @@ function civicrm_api3_survey_respondant_get(&$params) {
   $interviewerID = NULL;
   if (array_key_exists('interviewer_id', $params)) {
     $interviewerID = $params['interviewer_id'];
-}
+  }
 
   $statusIds = array();
   if (array_key_exists('status_id', $params)) {
@@ -93,4 +94,3 @@ function &civicrm_api3_survey_respondant_count($params) {
   }
   return ($signaturesCount);
 }
-