Skip to content

Commit ac7edad

Browse files
eddielauOlga Kopylova
authored andcommitted
MAGETWO-33157: Conflict restriction checking is missing version checking in enable/disable module CLI
- corrected doc block
1 parent 0a37095 commit ac7edad

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

lib/internal/Magento/Framework/Module/PackageInfo.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
namespace Magento\Framework\Module;
77

88
/**
9-
* Provide information of dependencies and conflicts in composer.json files and mapping of package name to module name
9+
* Provide information of dependencies and conflicts in composer.json files, mapping of package name to module name,
10+
* and mapping of module name to package version
1011
*/
1112
class PackageInfo
1213
{
@@ -18,21 +19,21 @@ class PackageInfo
1819
private $packageModuleMap;
1920

2021
/**
21-
* Map of modules to package current version, contains depending module's name
22+
* Map of module name to package version
2223
*
2324
* @var string[]
2425
*/
2526
private $modulePackageVersionMap;
2627

2728
/**
28-
* "require" field of each module
29+
* "require" field of each module, contains depending modules' name
2930
*
3031
* @var array[]
3132
*/
3233
private $requireMap;
3334

3435
/**
35-
* "conflict" field of each module, contains conflicting module's name and version
36+
* "conflict" field of each module, contains conflicting modules' name and version
3637
*
3738
* @var array[]
3839
*/

0 commit comments

Comments
 (0)