GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Pull Request — master (#27)
by
unknown
02:15
created
tests/behat/behat_recordrtc.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
 // NOTE: no MOODLE_INTERNAL test here, this file may be required by behat before including /config.php.
27 27
 
28
-require_once(__DIR__ . '/../../../../../../behat/behat_base.php');
28
+require_once(__DIR__.'/../../../../../../behat/behat_base.php');
29 29
 
30 30
 
31 31
 /**
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
 
48 48
         // We spin to give time to the iframe to be loaded.
49 49
         $this->spin(
50
-            function () {
50
+            function() {
51 51
                 $this->switch_to_popup_iframe();
52 52
                 // If no exception we are done.
53 53
                 return true;
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         try {
76 76
             $this->getSession()->executeScript($function);
77 77
         } catch (Exception $e) {
78
-            throw new \Exception("iFrame was NOT found." . PHP_EOL . $e->getMessage());
78
+            throw new \Exception("iFrame was NOT found.".PHP_EOL.$e->getMessage());
79 79
         }
80 80
 
81 81
         // After injecting the name attribute to the iFrame
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
      *
92 92
      * @throws Exception When no iFrame is found.
93 93
      */
94
-    public function i_switch_to_editor_iframe()  {
94
+    public function i_switch_to_editor_iframe() {
95 95
 
96 96
         // Find the only iFrame in the document by tag name.
97 97
         // The reason: this iFrame has only one selector: id, that can not be used to find it
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
         try {
106 106
             $this->getSession()->executeScript($function);
107 107
         } catch (Exception $e) {
108
-            throw new \Exception("iFrame was NOT found." . PHP_EOL . $e->getMessage());
108
+            throw new \Exception("iFrame was NOT found.".PHP_EOL.$e->getMessage());
109 109
         }
110 110
 
111 111
         // After injecting the name attribute to the iFrame
Please login to merge, or discard this patch.