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 efd677a + c2f31ab commit 57dc7d5Copy full SHA for 57dc7d5
Dotenv.php
@@ -401,7 +401,7 @@ private function resolveCommands($value)
401
throw new \LogicException('Resolving commands requires the Symfony Process component.');
402
}
403
404
- $process = \method_exists(Process::class, 'fromShellCommandline') ? Process::fromShellCommandline('echo '.$matches[0]) : new Process('echo '.$matches[0]);
+ $process = method_exists(Process::class, 'fromShellCommandline') ? Process::fromShellCommandline('echo '.$matches[0]) : new Process('echo '.$matches[0]);
405
$process->inheritEnvironmentVariables(true);
406
$process->setEnv($this->values);
407
try {
0 commit comments