mirror of
https://github.com/composer/composer
synced 2025-05-09 16:42:57 +00:00
Fix conflict order to be more accurate
This commit is contained in:
parent
1e68555e0a
commit
ec90c17e3b
3 changed files with 3 additions and 3 deletions
|
@ -162,7 +162,7 @@ abstract class Rule
|
|||
$package1 = $pool->literalToPackage($literals[0]);
|
||||
$package2 = $pool->literalToPackage($literals[1]);
|
||||
|
||||
return $package1->getPrettyString().' conflicts with '.$this->formatPackagesUnique($pool, array($package2)).'.';
|
||||
return $package2->getPrettyString().' conflicts with '.$package1->getPrettyString().'.';
|
||||
|
||||
case self::RULE_PACKAGE_REQUIRES:
|
||||
$sourceLiteral = array_shift($literals);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue