INFRA-132 - Remove @static annotation
[civicrm-core.git] / api / v3 / SurveyRespondant.php
index b81ca55af5ac95abf85451840b29028c459d7161..01c1be3c4c213c083f316538e52b6739ff7155f1 100644 (file)
@@ -1,8 +1,7 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright Tech To The People (c) 2010                              |
  +--------------------------------------------------------------------+
  * @subpackage API_Survey
  */
 
+/**
+ * @deprecated api notice
+ * @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.';
+}
+
 /**
  * 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
  */
@@ -57,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)) {
@@ -85,4 +94,3 @@ function &civicrm_api3_survey_respondant_count($params) {
   }
   return ($signaturesCount);
 }
-