Skip to content

Commit 2192790

Browse files
Merge branch '6.4' into 7.2
* 6.4: - CS fixes
2 parents 28347a8 + 234b6c6 commit 2192790

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/DebugCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
8181
$dotenvPath = $this->projectDirectory;
8282

8383
if (is_file($composerFile = $this->projectDirectory.'/composer.json')) {
84-
$runtimeConfig = (json_decode(file_get_contents($composerFile), true))['extra']['runtime'] ?? [];
84+
$runtimeConfig = json_decode(file_get_contents($composerFile), true)['extra']['runtime'] ?? [];
8585

8686
if (isset($runtimeConfig['dotenv_path'])) {
8787
$dotenvPath = $this->projectDirectory.'/'.$runtimeConfig['dotenv_path'];

0 commit comments

Comments
 (0)