Skip to content

Commit

Permalink
Fixes for Moodle PHPDoc checker.
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnOLane committed Jul 15, 2024
1 parent 43a1047 commit 1f28595
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions classes/webservice.php
Original file line number Diff line number Diff line change
Expand Up @@ -783,8 +783,8 @@ public function create_meeting($zoom) {
* Take a host_id of user and upgrade account from basic to pro
* depending on if licenses are available
*
* @param stdClass $zoom user object
* @return stdClass false or true if account was upgraded
* @param stdClass $user user object
* @return bool false or true if account was upgraded
*/
public function upgrade_user($user) {

Expand Down
8 changes: 4 additions & 4 deletions locallib.php
Original file line number Diff line number Diff line change
Expand Up @@ -572,10 +572,10 @@ function zoom_email_check($email) {
}
}

/** ADDED
* Check if user has any alias emails connected to account
* @param stdClass $object
* @param stdClass $service
/**
* ADDED. Check if user has any alias emails connected to account.
* @param stdClass $user User object.
* @param stdClass $service Service object.
*/
function zoom_email_alias($user, $service) {

Expand Down

0 comments on commit 1f28595

Please sign in to comment.