@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | * @uses FEATURE_GRADE_OUTCOMES |
| 102 | 102 | * @uses FEATURE_SHOW_DESCRIPTION |
| 103 | 103 | * @param string $feature |
| 104 | - * @return mixed True if yes (some features may use other values) |
|
| 104 | + * @return null|boolean True if yes (some features may use other values) |
|
| 105 | 105 | */ |
| 106 | 106 | function bigbluebuttonbn_supports($feature) { |
| 107 | 107 | if (!$feature) { |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | * |
| 221 | 221 | * @param object $bigbluebuttonbn Id of the module instance |
| 222 | 222 | * |
| 223 | - * @return bool Success/Failure |
|
| 223 | + * @return boolean|null Success/Failure |
|
| 224 | 224 | */ |
| 225 | 225 | function bigbluebuttonbn_delete_instance_log($bigbluebuttonbn) { |
| 226 | 226 | global $DB; |
@@ -241,7 +241,7 @@ discard block |
||
| 241 | 241 | * @param object $mod |
| 242 | 242 | * @param object $bigbluebuttonbn |
| 243 | 243 | * |
| 244 | - * @return bool |
|
| 244 | + * @return string |
|
| 245 | 245 | */ |
| 246 | 246 | function bigbluebuttonbn_user_outline($course, $user, $mod, $bigbluebuttonbn) { |
| 247 | 247 | if ($completed = bigbluebuttonbn_user_complete($course, $user, $mod, $bigbluebuttonbn)) { |
@@ -633,7 +633,7 @@ discard block |
||
| 633 | 633 | * |
| 634 | 634 | * @param object $bigbluebuttonbn BigBlueButtonBN form data |
| 635 | 635 | * |
| 636 | - * @return void |
|
| 636 | + * @return false|null |
|
| 637 | 637 | **/ |
| 638 | 638 | function bigbluebuttonbn_process_post_save($bigbluebuttonbn) { |
| 639 | 639 | global $DB; |
@@ -786,7 +786,7 @@ discard block |
||
| 786 | 786 | * @param stdClass $context context object |
| 787 | 787 | * @param string $filearea file area |
| 788 | 788 | * |
| 789 | - * @return false|null false if file not valid |
|
| 789 | + * @return boolean false if file not valid |
|
| 790 | 790 | */ |
| 791 | 791 | function bigbluebuttonbn_pluginfile_valid($context, $filearea) { |
| 792 | 792 | |