Completed
Pull Request — master (#30)
by Sarah
01:25
created
tests/codeception/_support/FunctionalTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 {
22 22
     use _generated\FunctionalTesterActions;
23 23
     
24
-   /**
25
-    * Define custom actions here
26
-    */
24
+    /**
25
+     * Define custom actions here
26
+     */
27 27
 }
Please login to merge, or discard this patch.
tests/codeception/_support/UnitTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 class UnitTester extends \UnitTester
6 6
 {
7 7
     use _generated\UnitTesterActions;
8
-   /**
9
-    * Define custom actions here
10
-    */
8
+    /**
9
+     * Define custom actions here
10
+     */
11 11
 }
Please login to merge, or discard this patch.
tests/codeception/_support/AcceptanceTester.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
 class AcceptanceTester extends \AcceptanceTester
21 21
 {
22 22
     use _generated\AcceptanceTesterActions;
23
-   /**
24
-    * Define custom actions here
25
-    */
23
+    /**
24
+     * Define custom actions here
25
+     */
26 26
 }
Please login to merge, or discard this patch.
tests/codeception/_bootstrap.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 block discarded – undo
10 10
 codecept_debug('Module root: ' . $testRoot);
11 11
 
12 12
 $humhubPath = getenv('HUMHUB_PATH');
13
-if ($humhubPath === false) {
13
+if ( $humhubPath === false ) {
14 14
     // If no environment path was set, we assume residing in default the modules directory
15 15
     $moduleConfig = require $testRoot . '/config/test.php';
16
-    if (isset($moduleConfig['humhub_root'])) {
16
+    if ( isset($moduleConfig['humhub_root']) ) {
17 17
         $humhubPath = $moduleConfig['humhub_root'];
18 18
     } else {
19 19
         $humhubPath = dirname(__DIR__, 5);
Please login to merge, or discard this patch.