Completed
Push — master ( ab9e22...72dffb )
by Jesus
02:17
created
lib.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
  * @uses FEATURE_GRADE_OUTCOMES
103 103
  * @uses FEATURE_SHOW_DESCRIPTION
104 104
  * @param string $feature
105
- * @return mixed True if yes (some features may use other values)
105
+ * @return null|boolean True if yes (some features may use other values)
106 106
  */
107 107
 function bigbluebuttonbn_supports($feature) {
108 108
     if (!$feature) {
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
  *
188 188
  * @param int $id Id of the module instance
189 189
  *
190
- * @return bool Success/Failure
190
+ * @return boolean|null Success/Failure
191 191
  */
192 192
 function bigbluebuttonbn_delete_instance($id) {
193 193
     global $DB;
@@ -214,7 +214,7 @@  discard block
 block discarded – undo
214 214
  *
215 215
  * @param object $bigbluebuttonbn Id of the module instance
216 216
  *
217
- * @return bool Success/Failure
217
+ * @return boolean|null Success/Failure
218 218
  */
219 219
 function bigbluebuttonbn_delete_instance_log($bigbluebuttonbn) {
220 220
     global $DB;
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
  * @param object $mod
236 236
  * @param object $bigbluebuttonbn
237 237
  *
238
- * @return bool
238
+ * @return string
239 239
  */
240 240
 function bigbluebuttonbn_user_outline($course, $user, $mod, $bigbluebuttonbn) {
241 241
     global $DB;
@@ -592,7 +592,7 @@  discard block
 block discarded – undo
592 592
  * @param stdClass $context       context object
593 593
  * @param string   $filearea      file area
594 594
  *
595
- * @return false|null false if file not valid
595
+ * @return boolean false if file not valid
596 596
  */
597 597
 function bigbluebuttonbn_pluginfile_valid($context, $filearea) {
598 598
     if ($context->contextlevel != CONTEXT_MODULE) {
Please login to merge, or discard this patch.