We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1ca768 commit 894855dCopy full SHA for 894855d
src/EnvFile.php
@@ -109,7 +109,4 @@ public function saveTo(string $path): void
109
file_put_contents($path, $content);
110
}
111
112
- // Private methods
113
-
114
115
tests/Feature/ConsistencyTest.php
@@ -47,7 +47,7 @@ public function testLoadSave()
47
$contentPath = __DIR__ . "/Asset/example.env";
48
$content = file_get_contents($contentPath);
49
50
- $tmpPath = dirname(dirname(__DIR__)) . "/.tmp";
+ $tmpPath = dirname(__DIR__, 2) . "/.tmp";
51
52
if (!is_dir($tmpPath)) {
53
mkdir($tmpPath);
0 commit comments