Completed
Pull Request — master (#56)
by Jesus
13:54
created
classes/external.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
      * @since Moodle 3.3
110 110
      */
111 111
     public static function get_bigbluebuttonbns_by_courses_parameters() {
112
-        return new external_function_parameters (
112
+        return new external_function_parameters(
113 113
             array(
114 114
                 'courseids' => new external_multiple_structure(
115 115
                     new external_value(PARAM_INT, 'Course id'), 'Array of course ids', VALUE_DEFAULT, array()
Please login to merge, or discard this patch.
lib.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
  * Remove this block when restored
62 62
  */
63 63
 
64
- /** @var BIGBLUEBUTTONBN_DEFAULT_SERVER_URL string of default bigbluebutton server url */
64
+    /** @var BIGBLUEBUTTONBN_DEFAULT_SERVER_URL string of default bigbluebutton server url */
65 65
 const BIGBLUEBUTTONBN_DEFAULT_SERVER_URL = 'http://test-install.blindsidenetworks.com/bigbluebutton/';
66 66
 /** @var BIGBLUEBUTTONBN_DEFAULT_SHARED_SECRET string of default bigbluebutton server shared secret */
67 67
 const BIGBLUEBUTTONBN_DEFAULT_SHARED_SECRET = '8cd8ef52e8e101574e400365b55e11a6';
@@ -350,12 +350,12 @@  discard block
 block discarded – undo
350 350
     $str  = '<div class="bigbluebuttonbn overview">'."\n";
351 351
     $str .= '  <div class="name">'.get_string('modulename', 'bigbluebuttonbn').':&nbsp;'."\n";
352 352
     $str .= '    <a '.$classes.'href="'.$CFG->wwwroot.'/mod/bigbluebuttonbn/view.php?id='.$bigbluebuttonbn->coursemodule.
353
-      '">'.$bigbluebuttonbn->name.'</a>'."\n";
353
+        '">'.$bigbluebuttonbn->name.'</a>'."\n";
354 354
     $str .= '  </div>'."\n";
355 355
     $str .= '  <div class="info">'.get_string($start, 'bigbluebuttonbn').': '.userdate($bigbluebuttonbn->openingtime).
356 356
         '</div>'."\n";
357 357
     $str .= '  <div class="info">'.get_string('ends_at', 'bigbluebuttonbn').': '.userdate($bigbluebuttonbn->closingtime)
358
-      .'</div>'."\n";
358
+        .'</div>'."\n";
359 359
     $str .= '</div>'."\n";
360 360
     return $str;
361 361
 }
@@ -540,7 +540,7 @@  discard block
 block discarded – undo
540 540
             $bigbluebuttonbn->coursemodule,
541 541
             'bigbluebuttonbn',
542 542
             $bigbluebuttonbn->id, $bigbluebuttonbn->completionexpected
543
-          );
543
+            );
544 544
     }
545 545
 }
546 546
 /**
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
  * @return \core_calendar\local\event\entities\action_interface|null
749 749
  */
750 750
 function mod_bigbluebuttonbn_core_calendar_provide_event_action(calendar_event $event,
751
-                                                       \core_calendar\action_factory $factory) {
751
+                                                        \core_calendar\action_factory $factory) {
752 752
     $cm = get_fast_modinfo($event->courseid)->instances['bigbluebuttonbn'][$event->instance];
753 753
 
754 754
     $completion = new \completion_info($cm->get_course());
Please login to merge, or discard this patch.