From 5c29cc6e85bffef4f47853062a15447d8c337424 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20Mudr=C3=A1k?= Date: Thu, 25 Sep 2014 18:33:05 +0200 Subject: [PATCH] MDL-44536 workshop: Fix missing phpDoc for user report callbacks --- mod/workshop/lib.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mod/workshop/lib.php b/mod/workshop/lib.php index 6efdf302e57..0c5724e0d53 100644 --- a/mod/workshop/lib.php +++ b/mod/workshop/lib.php @@ -254,6 +254,10 @@ function workshop_delete_instance($id) { * $return->time = the time they did it * $return->info = a short text description * + * @param stdClass $course The course record. + * @param stdClass $user The user record. + * @param cm_info|stdClass $mod The course module info object or record. + * @param stdClass $workshop The workshop instance record. * @return stdclass|null */ function workshop_user_outline($course, $user, $mod, $workshop) { @@ -293,6 +297,10 @@ function workshop_user_outline($course, $user, $mod, $workshop) { * Print a detailed representation of what a user has done with * a given particular instance of this module, for user activity reports. * + * @param stdClass $course The course record. + * @param stdClass $user The user record. + * @param cm_info|stdClass $mod The course module info object or record. + * @param stdClass $workshop The workshop instance record. * @return string HTML */ function workshop_user_complete($course, $user, $mod, $workshop) { -- 2.43.0