Skip to content

Commit 89c8c6b

Browse files
committed
Fix File get contents #27
1 parent 3d8fd3f commit 89c8c6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EnvironmentSetCommand.php

Lines changed: 1 addition & 1 deletion
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)