Skip to content

Commit

Permalink
PHPDoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Sep 11, 2016
1 parent 7a2ea17 commit 8e3d937
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions core/filter_api.php
Expand Up @@ -1051,7 +1051,7 @@ function filter_unique_query_clauses( array $p_query_clauses ) {
* should be used manually when required.
* This is the case when "filter_get_bug_count" is used followed by "filter_get_bug_rows_result"
* @param array $p_query_clauses Array of query clauses.
* @param type $p_pop_param Whether to pop DB params from the stack
* @param boolean $p_pop_param Whether to pop DB params from the stack
* @return integer
*/
function filter_get_bug_count( array $p_query_clauses, $p_pop_param = true ) {
Expand Down Expand Up @@ -1186,7 +1186,7 @@ function filter_get_bug_rows_filter( $p_project_id = null, $p_user_id = null ) {
* -1 or null indicates default query (no limits)
* @param integer $p_offset Offset query results for paging (number of rows)
* -1 or null indicates default query (no offset)
* @param type $p_pop_param Whether to pop DB params from the stack
* @param boolean $p_pop_param Whether to pop DB params from the stack
* @return IteratorAggregate|boolean adodb result set or false if the query failed.
*/
function filter_get_bug_rows_result( array $p_query_clauses, $p_count = null, $p_offset = null, $p_pop_param = true ) {
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 8e3d937

Please sign in to comment.