Skip to content

Commit

Permalink
PHPDoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Jun 19, 2016
1 parent 96e6fdb commit 9af68ea
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion api/soap/mc_api.php
Expand Up @@ -423,7 +423,7 @@ function mci_sanitize_xml_string ( $p_input ) {
/**
* Gets the url for MantisBT.
*
* @return MantisBT URL terminated by a /.
* @return string MantisBT URL terminated by a /.
*/
function mci_get_mantis_path() {
return config_get( 'path' );
Expand Down
2 changes: 1 addition & 1 deletion core/history_api.php
Expand Up @@ -184,7 +184,7 @@ function history_count_user_recent_events( $p_duration_in_seconds, $p_user_id =
* @param integer $p_start_time The start time to filter by, or null for all.
* @param integer $p_end_time The end time to filter by, or null for all.
* @param string $p_history_order The sort order.
* @return database result to pass into history_get_event_from_row().
* @return IteratorAggregate|boolean database result to pass into history_get_event_from_row().
*/
function history_get_range_result( $p_bug_id = null, $p_start_time = null, $p_end_time = null, $p_history_order = null ) {
if ( $p_history_order === null ) {
Expand Down
2 changes: 1 addition & 1 deletion core/ldap_api.php
Expand Up @@ -449,7 +449,7 @@ function ldap_simulation_get_user( $p_username ) {
* Given a username, gets the email address or empty address if user is not found.
*
* @param string $p_username The user name.
* @return The email address or blank if user is not found.
* @return string The email address or blank if user is not found.
*/
function ldap_simulation_email_from_username( $p_username ) {
$t_user = ldap_simulation_get_user( $p_username );
Expand Down

0 comments on commit 9af68ea

Please sign in to comment.