Skip to content

Commit

Permalink
Fix phpDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Aug 9, 2015
1 parent 88ae9d2 commit bb0d14d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions api/soap/mc_issue_api.php
Expand Up @@ -609,10 +609,10 @@ function mc_issue_get_id_from_summary( $p_username, $p_password, $p_summary ) {
* The current user ability to assign issue access check is only done on change.
* This behavior would be consistent with the web UI.
*
* @param $p_user_id The id of the logged in user.
* @param $p_project_id The id of the project the issue is associated with.
* @param $p_old_handler_id The old handler id.
* @param $p_new_handler_id The new handler id. 0 for not assigned.
* @param integer $p_user_id The id of the logged in user.
* @param integer $p_project_id The id of the project the issue is associated with.
* @param integer $p_old_handler_id The old handler id.
* @param integer $p_new_handler_id The new handler id. 0 for not assigned.
* @return true: access ok, otherwise: soap fault.
*/
function mci_issue_handler_access_check( $p_user_id, $p_project_id, $p_old_handler_id, $p_new_handler_id ) {
Expand Down
2 changes: 1 addition & 1 deletion core/current_user_api.php
Expand Up @@ -48,7 +48,7 @@
* Sets the current user
*
* @param integer $p_user_id Id to set as current user
* @return Old current user id
* @return integer Old current user id
* @access public
*/
function current_user_set( $p_user_id ) {
Expand Down

0 comments on commit bb0d14d

Please sign in to comment.