Skip to content

Commit 11d2235

Browse files
authored
Merge pull request #35 from imliam/fix-27
Fix #27
2 parents 3d8fd3f + 89c8c6b commit 11d2235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EnvironmentSetCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function handle(): void
4646
);
4747

4848
// Use system env file path if the argument env file path is not provided.
49-
$envFilePath = $envFilePath ?? App::environmentFilePath();
49+
$envFilePath = $envFilePath ?: App::environmentFilePath();
5050
$this->info("The following environment file is used: '" . $envFilePath . "'");
5151
} catch (InvalidArgumentException $e) {
5252
$this->error($e->getMessage());

0 commit comments

Comments
 (0)