Completed
Push — master ( d51556...d3ec1f )
by Jesus
02:19
created
JWT.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,7 @@
 block discarded – undo
137 137
      * Sign a string with a given key and algorithm.
138 138
      *
139 139
      * @param string $msg          The message to sign
140
-     * @param string|resource $key The secret key
140
+     * @param string $key The secret key
141 141
      * @param string $alg       The signing algorithm. Supported algorithms
142 142
      *                               are 'HS256', 'HS384', 'HS512' and 'RS256'
143 143
      *
Please login to merge, or discard this patch.
lib.php 1 patch
Doc Comments   +8 added lines, -10 removed lines patch added patch discarded remove patch
@@ -66,7 +66,6 @@  discard block
 block discarded – undo
66 66
  * will create a new instance and return the id number
67 67
  * of the new instance.
68 68
  *
69
- * @param object $bigbluebuttonbn An object from the form in mod_form.php
70 69
  * @return int The id of the newly inserted bigbluebuttonbn record
71 70
  */
72 71
 function bigbluebuttonbn_add_instance($data, $mform) {
@@ -93,7 +92,6 @@  discard block
 block discarded – undo
93 92
  * (defined by the form in mod_form.php) this function
94 93
  * will update an existing instance with new data.
95 94
  *
96
- * @param object $bigbluebuttonbn An object from the form in mod_form.php
97 95
  * @return boolean Success/Fail
98 96
  */
99 97
 function bigbluebuttonbn_update_instance($data, $mform) {
@@ -162,7 +160,7 @@  discard block
 block discarded – undo
162 160
  * $return->time = the time they did it
163 161
  * $return->info = a short text description
164 162
  *
165
- * @return null
163
+ * @return boolean
166 164
  */
167 165
 function bigbluebuttonbn_user_outline($course, $user, $mod, $bigbluebuttonbn) {
168 166
     return true;
@@ -230,7 +228,7 @@  discard block
 block discarded – undo
230 228
  * See other modules as example.
231 229
  *
232 230
  * @param int $bigbluebuttonbnid ID of an instance of this module
233
- * @return mixed boolean/array of students
231
+ * @return boolean boolean/array of students
234 232
  */
235 233
 function bigbluebuttonbn_get_participants($bigbluebuttonbnid) {
236 234
     return false;
@@ -238,7 +236,7 @@  discard block
 block discarded – undo
238 236
 
239 237
 /**
240 238
  * Returns all other caps used in module
241
- * @return array
239
+ * @return string[]
242 240
  */
243 241
 function bigbluebuttonbn_get_extra_capabilities() {
244 242
     return array('moodle/site:accessallgroups');
@@ -255,7 +253,7 @@  discard block
 block discarded – undo
255 253
  * as reference.
256 254
  *
257 255
  * @param int $bigbluebuttonbnid ID of an instance of this module
258
- * @return mixed
256
+ * @return boolean
259 257
  */
260 258
 function bigbluebuttonbn_scale_used($bigbluebuttonbnid, $scaleid) {
261 259
     $return = false;
@@ -288,7 +286,7 @@  discard block
 block discarded – undo
288 286
 
289 287
 /**
290 288
  * List of view style log actions
291
- * @return array
289
+ * @return string[]
292 290
  */
293 291
 function bigbluebuttonbn_get_view_actions() {
294 292
     return array('view', 'view all');
@@ -296,7 +294,7 @@  discard block
 block discarded – undo
296 294
 
297 295
 /**
298 296
  * List of update style log actions
299
- * @return array
297
+ * @return string[]
300 298
  */
301 299
 function bigbluebuttonbn_get_post_actions() {
302 300
     return array('update', 'add', 'create', 'join', 'end', 'left', 'publish', 'unpublish', 'delete');
@@ -310,7 +308,7 @@  discard block
 block discarded – undo
310 308
  *
311 309
  * @global object
312 310
  * @param object $coursemodule
313
- * @return object|null
311
+ * @return null|cached_cm_info
314 312
  */
315 313
 function bigbluebuttonbn_get_coursemodule_info($coursemodule) {
316 314
     global $CFG, $DB;
@@ -502,7 +500,7 @@  discard block
 block discarded – undo
502 500
  * @param array $args extra arguments
503 501
  * @param bool $forcedownload whether or not force download
504 502
  * @param array $options additional options affecting the file serving
505
- * @return bool false if file not found, does not return if found - justsend the file
503
+ * @return false|null false if file not found, does not return if found - justsend the file
506 504
  */
507 505
 function bigbluebuttonbn_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload, array $options=array()) {
508 506
     global $CFG, $DB;
Please login to merge, or discard this patch.
locallib.php 1 patch
Doc Comments   +31 added lines patch added patch discarded remove patch
@@ -194,6 +194,9 @@  discard block
 block discarded – undo
194 194
     return $xml;
195 195
 }
196 196
 
197
+/**
198
+ * @param string $meetingID
199
+ */
197 200
 function bigbluebuttonbn_getMeetingInfoArray( $meetingID, $modPW, $URL, $SALT ) {
198 201
     $xml = bigbluebuttonbn_wrap_xml_load_file( bigbluebuttonbn_getMeetingInfoURL( $meetingID, $modPW, $URL, $SALT ) );
199 202
 
@@ -211,6 +214,9 @@  discard block
 block discarded – undo
211 214
     }
212 215
 }
213 216
 
217
+/**
218
+ * @param string $meetingIDs
219
+ */
214 220
 function bigbluebuttonbn_getRecordingsArray( $meetingIDs, $URL, $SALT ) {
215 221
     $recordings = array();
216 222
 
@@ -292,6 +298,10 @@  discard block
 block discarded – undo
292 298
     }
293 299
 }
294 300
 
301
+/**
302
+ * @param string $URL
303
+ * @param string $SALT
304
+ */
295 305
 function bigbluebuttonbn_doDeleteRecordings( $recordIDs, $URL, $SALT ) {
296 306
     $ids = 	explode(",", $recordIDs);
297 307
     foreach( $ids as $id){
@@ -303,6 +313,11 @@  discard block
 block discarded – undo
303 313
     return true;
304 314
 }
305 315
 
316
+/**
317
+ * @param string $set
318
+ * @param string $URL
319
+ * @param string $SALT
320
+ */
306 321
 function bigbluebuttonbn_doPublishRecordings( $recordIDs, $set, $URL, $SALT ) {
307 322
     $ids = 	explode(",", $recordIDs);
308 323
     foreach( $ids as $id){
@@ -314,6 +329,10 @@  discard block
 block discarded – undo
314 329
     return true;
315 330
 }
316 331
 
332
+/**
333
+ * @param string $URL
334
+ * @param string $SALT
335
+ */
317 336
 function bigbluebuttonbn_doEndMeeting( $meetingID, $modPW, $URL, $SALT ) {
318 337
     $xml = bigbluebuttonbn_wrap_xml_load_file( bigbluebuttonbn_getEndMeetingURL( $meetingID, $modPW, $URL, $SALT ) );
319 338
 
@@ -335,6 +354,9 @@  discard block
 block discarded – undo
335 354
 }
336 355
 
337 356
 
357
+/**
358
+ * @param string $URL
359
+ */
338 360
 function bigbluebuttonbn_getServerVersion( $URL ){
339 361
     $xml = bigbluebuttonbn_wrap_xml_load_file( $URL."api" );
340 362
     if ( $xml && $xml->returncode == 'SUCCESS' ) {
@@ -353,6 +375,9 @@  discard block
 block discarded – undo
353 375
     }
354 376
 }
355 377
 
378
+/**
379
+ * @param string $url
380
+ */
356 381
 function bigbluebuttonbn_wrap_xml_load_file($url, $method=BIGBLUEBUTTONBN_METHOD_GET, $data=null) {
357 382
     if ( bigbluebuttonbn_debugdisplay() ) error_log("Request to: ".$url);
358 383
 
@@ -813,6 +838,9 @@  discard block
 block discarded – undo
813 838
     $cache = cache::make_from_params(cache_store::MODE_APPLICATION, 'mod_bigbluebuttonbn', 'meetings_cache');
814 839
 }
815 840
 
841
+/**
842
+ * @param boolean $is_moderator
843
+ */
816 844
 function bigbluebuttonbn_bbb_broker_participant_joined($meetingid, $is_moderator) {
817 845
     $cache = cache::make_from_params(cache_store::MODE_APPLICATION, 'mod_bigbluebuttonbn', 'meetings_cache');
818 846
     $result = $cache->get($meetingid);
@@ -1402,6 +1430,9 @@  discard block
 block discarded – undo
1402 1430
     return (isset($BIGBLUEBUTTONBN_CFG->bigbluebuttonbn_recordingready_enabled)? $BIGBLUEBUTTONBN_CFG->bigbluebuttonbn_recordingready_enabled: (isset($CFG->bigbluebuttonbn_recordingready_enabled)? $CFG->bigbluebuttonbn_recordingready_enabled: false));
1403 1431
 }
1404 1432
 
1433
+/**
1434
+ * @return string
1435
+ */
1405 1436
 function bigbluebuttonbn_get_cfg_moderator_default() {
1406 1437
     global $BIGBLUEBUTTONBN_CFG, $CFG;
1407 1438
     return (isset($BIGBLUEBUTTONBN_CFG->bigbluebuttonbn_moderator_default)? $BIGBLUEBUTTONBN_CFG->bigbluebuttonbn_moderator_default: (isset($CFG->bigbluebuttonbn_moderator_default)? $CFG->bigbluebuttonbn_moderator_default: 'owner'));
Please login to merge, or discard this patch.