Completed
Push — master ( 0278dc...4e9fb8 )
by Gabriel
08:25 queued 02:42
created
src/Collection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace Sinergi\Config;
4 4
 
5
-require_once __DIR__ . "/DotenvHelper.php";
5
+require_once __DIR__."/DotenvHelper.php";
6 6
 
7 7
 use InvalidArgumentException;
8 8
 use ArrayAccess;
Please login to merge, or discard this patch.
src/Loader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,9 +44,9 @@
 block discarded – undo
44 44
             $file = "{$file}.{$fileType}";
45 45
 
46 46
             if ($env) {
47
-                $path = $path . DIRECTORY_SEPARATOR . $env . DIRECTORY_SEPARATOR . $file;
47
+                $path = $path.DIRECTORY_SEPARATOR.$env.DIRECTORY_SEPARATOR.$file;
48 48
             } else {
49
-                $path = $path . DIRECTORY_SEPARATOR . $file;
49
+                $path = $path.DIRECTORY_SEPARATOR.$file;
50 50
             }
51 51
 
52 52
             if (file_exists($path)) {
Please login to merge, or discard this patch.