Passed
Push — master ( abee1f...edc958 )
by Kirill
03:08
created
src/Config/tests/BaseTest.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,8 +30,8 @@
 block discarded – undo
30 30
 
31 31
     protected function getFactory(string $directory = null, bool $strict = true): ConfigManager
32 32
     {
33
-        if (is_null($directory)) {
34
-            $directory = __DIR__ . '/fixtures';
33
+        if (is_null($directory)){
34
+            $directory = __DIR__.'/fixtures';
35 35
         }
36 36
 
37 37
         return new ConfigManager(new DirectoryLoader($directory, $this->container), $strict);
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,8 @@
 block discarded – undo
30 30
 
31 31
     protected function getFactory(string $directory = null, bool $strict = true): ConfigManager
32 32
     {
33
-        if (is_null($directory)) {
33
+        if (is_null($directory))
34
+        {
34 35
             $directory = __DIR__ . '/fixtures';
35 36
         }
36 37
 
Please login to merge, or discard this patch.