Completed
Pull Request — master (#11)
by Timothy
06:33 queued 03:39
created
src/ZendPhpDotEnv/Module.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
      */
47 47
     public function getConfig()
48 48
     {
49
-        return require __DIR__ . '/../../config/module.config.php';
49
+        return require __DIR__.'/../../config/module.config.php';
50 50
     }
51 51
 
52 52
     /**
Please login to merge, or discard this patch.
src/ZendPhpDotEnv/Diagnostics/RequireEnvFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function createService(ServiceLocatorInterface $serviceLocator)
17 17
     {
18 18
         return new RequireReadableFile(array(
19
-            getcwd() . '/.env',
19
+            getcwd().'/.env',
20 20
         ));
21 21
     }
22 22
 }
Please login to merge, or discard this patch.
src/ZendPhpDotEnv/Diagnostics/SuggestEnvFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
     public function createService(ServiceLocatorInterface $serviceLocator)
17 17
     {
18 18
         return new RequireReadableFile(array(
19
-            getcwd() . '/.env',
19
+            getcwd().'/.env',
20 20
         ));
21 21
     }
22 22
 }
Please login to merge, or discard this patch.