Skip to content

Commit c2f31ab

Browse files
committed
fixed CS
1 parent b541d63 commit c2f31ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dotenv.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ private function resolveCommands($value)
382382
throw new \LogicException('Resolving commands requires the Symfony Process component.');
383383
}
384384

385-
$process = \method_exists(Process::class, 'fromShellCommandline') ? Process::fromShellCommandline('echo '.$matches[0]) : new Process('echo '.$matches[0]);
385+
$process = method_exists(Process::class, 'fromShellCommandline') ? Process::fromShellCommandline('echo '.$matches[0]) : new Process('echo '.$matches[0]);
386386
$process->inheritEnvironmentVariables(true);
387387
$process->setEnv($this->values);
388388
try {

0 commit comments

Comments
 (0)