We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28347a8 + 234b6c6 commit 2192790Copy full SHA for 2192790
Command/DebugCommand.php
@@ -81,7 +81,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
81
$dotenvPath = $this->projectDirectory;
82
83
if (is_file($composerFile = $this->projectDirectory.'/composer.json')) {
84
- $runtimeConfig = (json_decode(file_get_contents($composerFile), true))['extra']['runtime'] ?? [];
+ $runtimeConfig = json_decode(file_get_contents($composerFile), true)['extra']['runtime'] ?? [];
85
86
if (isset($runtimeConfig['dotenv_path'])) {
87
$dotenvPath = $this->projectDirectory.'/'.$runtimeConfig['dotenv_path'];
0 commit comments