Update src/Core/Manifest/VersionProvider.php

Co-authored-by: Guy Sartorelli <36352093+GuySartorelli@users.noreply.github.com>
This commit is contained in:
Thomas Portelange 2024-02-26 09:48:35 +01:00 committed by GitHub
parent 2b64e98afc
commit 1cf3dde9f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ class VersionProvider
{
$versions = [];
foreach ($modules as $module) {
$versions[$module] = \Composer\InstalledVersions::getPrettyVersion($module);
$versions[$module] = InstalledVersions::getPrettyVersion($module);
}
return $versions;
}