From 0ec2bd14e58c341834663c452ebea8a4edaae77e Mon Sep 17 00:00:00 2001 From: Roland Becker Date: Wed, 27 Dec 2017 14:24:39 +0100 Subject: [PATCH] PHPDoc fixes Issue #23754 --- api/soap/mc_project_api.php | 2 +- core/filter_api.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/soap/mc_project_api.php b/api/soap/mc_project_api.php index cf2c30cf77..b81024e2ec 100644 --- a/api/soap/mc_project_api.php +++ b/api/soap/mc_project_api.php @@ -648,7 +648,7 @@ function mc_project_get_custom_fields( $p_username, $p_password, $p_project_id ) * * @param integer $p_project_id The project id. * @param array $p_custom_fields The custom fields, may be not set. - * return bool|SoapFault|RestFault true or error. + * @return bool|SoapFault|RestFault true or error. */ function mci_project_custom_fields_validate( $p_project_id, &$p_custom_fields ) { # Load custom field definitions diff --git a/core/filter_api.php b/core/filter_api.php index 2ae29cbd7a..282ffcc1e1 100644 --- a/core/filter_api.php +++ b/core/filter_api.php @@ -3066,7 +3066,7 @@ function filter_db_get_queries( $p_project_id = null, $p_user_id = null, $p_publ * @param integer|null $p_project_id A valid project identifier or null for current project. * @param integer|null $p_user_id A valid user identifier or null for logged in user. * @param boolean $p_filter_by_project Only return filters associated with specified project id or All Projects, otherwise return all filters for user. - * @param boolean $p_return_name_only true: return names of filters, false: return structures with filter header information. + * @param boolean $p_return_names_only true: return names of filters, false: return structures with filter header information. * @return array Array of filters. */ function filter_db_get_available_queries( $p_project_id = null, $p_user_id = null, $p_filter_by_project = true, $p_return_names_only = true ) {