Passed
Push — master ( 2c18db...df95e6 )
by Jesus
02:47
created
lib.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
                     'timelimit' => $timelimit,
65 65
                     'audiortcicon' => $audiortcicon,
66 66
                     'videortcicon' => $videortcicon
67
-                  );
67
+                    );
68 68
     return $params;
69 69
 }
70 70
 
Please login to merge, or discard this patch.
locallib.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,4 +25,4 @@
 block discarded – undo
25 25
 
26 26
 defined('MOODLE_INTERNAL') || die();
27 27
 
28
-require_once(dirname(__FILE__).'/lib.php');
28
+require_once(dirname(__FILE__) . '/lib.php');
Please login to merge, or discard this patch.
recordrtc.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
24 24
  */
25 25
 
26
-require_once(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))).'/config.php');
27
-require_once(dirname(__FILE__).'/locallib.php');
26
+require_once(dirname(dirname(dirname(dirname(dirname(dirname(__FILE__)))))) . '/config.php');
27
+require_once(dirname(__FILE__) . '/locallib.php');
28 28
 
29 29
 $contextid = required_param('contextid', PARAM_INT);
30 30
 $content = required_param('content', PARAM_RAW);
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 $PAGE->set_context($context);
37 37
 $PAGE->set_url(MOODLE_ATTO_RECORDRTC_URL);
38 38
 $PAGE->set_cacheable(false);
39
-$title = isset($cm->name)? $cm->name: '';
39
+$title = isset($cm->name) ? $cm->name : '';
40 40
 $PAGE->set_title($title);
41 41
 $PAGE->set_heading($title);
42 42
 
Please login to merge, or discard this patch.