Completed
Branch master (393d4d)
by Lusseau
04:57
created
src/Metfan/RabbitSetup/Tests/Command/ConfigExpertCommandTest.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,9 @@
 block discarded – undo
47 47
 
48 48
         $this->command = new ConfigExpertCommand($container);
49 49
 
50
-        if (!defined('ROOT_PATH'))
51
-            define('ROOT_PATH', realpath(__DIR__.'/../'));
50
+        if (!defined('ROOT_PATH')) {
51
+                    define('ROOT_PATH', realpath(__DIR__.'/../'));
52
+        }
52 53
     }
53 54
 
54 55
     public function testFailedParsing()
Please login to merge, or discard this patch.
src/Metfan/RabbitSetup/Tests/Command/ValidateExpertCommandTest.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,8 +16,9 @@
 block discarded – undo
16 16
 {
17 17
     public function test()
18 18
     {
19
-        if (!defined('ROOT_PATH'))
20
-            define('ROOT_PATH', realpath(__DIR__.'/../'));
19
+        if (!defined('ROOT_PATH')) {
20
+                    define('ROOT_PATH', realpath(__DIR__.'/../'));
21
+        }
21 22
 
22 23
         $container = new Container();
23 24
         $command = new ValidateExpertCommand($container);
Please login to merge, or discard this patch.
src/Metfan/RabbitSetup/Tests/Parser/ParseExpertConfigTest.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,9 @@
 block discarded – undo
29 29
      */
30 30
     public function test($filePath, $exception = null)
31 31
     {
32
-        if (!defined('ROOT_PATH'))
33
-            define('ROOT_PATH', realpath(__DIR__.'/../'));
32
+        if (!defined('ROOT_PATH')) {
33
+                    define('ROOT_PATH', realpath(__DIR__.'/../'));
34
+        }
34 35
 
35 36
         $parser = new ParseExpertConfig();
36 37
 
Please login to merge, or discard this patch.