/**
* @see _civicrm_api3_generic_getlist_params
*
- * @param $request
- * Array.
+ * @param array $request
*/
function _civicrm_api3_contact_getlist_params(&$request) {
// get the autocomplete options from settings
/**
* @see _civicrm_api3_generic_getlist_output
*
- * @param $result
- * Array.
- * @param $request
- * Array.
+ * @param array $result
+ * @param array $request
*
* @return array
*/
/**
* @see _civicrm_api3_generic_getlist_params
*
- * @param $request
- * Array.
+ * @param array $request
*/
function _civicrm_api3_event_getlist_params(&$request) {
$fieldsToReturn = array('start_date', 'event_type_id', 'title', 'summary');
/**
* @see _civicrm_api3_generic_getlist_output
*
- * @param $result
- * Array.
- * @param $request
- * Array.
+ * @param array $result
+ * @param array $request
*
* @return array
*/
* Generic api wrapper used for quicksearch and autocomplete
*
* @param array $apiRequest
- * Array.
* @return mixed
*/
function civicrm_api3_generic_getList($apiRequest) {
/**
* Set defaults for api.getlist
*
- * @param $entity
- * String.
- * @param $request
- * Array.
+ * @param string $entity
+ * @param array $request
*/
function _civicrm_api3_generic_getList_defaults($entity, &$request) {
$config = CRM_Core_Config::singleton();
/**
* Fallback implementation of getlist_params. May be overridden by individual apis
*
- * @param $request
- * Array.
+ * @param array $request
*/
function _civicrm_api3_generic_getlist_params(&$request) {
$fieldsToReturn = array($request['id_field'], $request['label_field']);
/**
* Fallback implementation of getlist_output. May be overridden by individual apis
*
- * @param $result
- * Array.
- * @param $request
- * Array.
+ * @param array $result
+ * @param array $request
*
* @return array
*/