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.
1 parent b541d63 commit c2f31abCopy full SHA for c2f31ab
Dotenv.php
@@ -382,7 +382,7 @@ private function resolveCommands($value)
382
throw new \LogicException('Resolving commands requires the Symfony Process component.');
383
}
384
385
- $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]);
386
$process->inheritEnvironmentVariables(true);
387
$process->setEnv($this->values);
388
try {
0 commit comments