1
0
Fork 0
pull/12305/head
Jordi Boggiano 2025-02-18 14:20:32 +01:00 committed by GitHub
parent beb23cbf11
commit c8623c0b15
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -60,10 +60,10 @@ class RootPackageLoader extends ArrayLoader
$this->manager = $manager;
$this->config = $config;
if (!$versionGuesser) {
$processExecutor = new ProcessExecutor($io);
$processExecutor->enableAsync();
$versionGuesser = new VersionGuesser($config, $processExecutor, $this->versionParser);
if (null === $versionGuesser) {
$processExecutor = new ProcessExecutor($io);
$processExecutor->enableAsync();
$versionGuesser = new VersionGuesser($config, $processExecutor, $this->versionParser);
}
$this->versionGuesser = $versionGuesser;
$this->io = $io;