mirror of
https://github.com/composer/composer
synced 2025-05-11 09:32:55 +00:00
Change Uninstalling to Removing in lock operations
This commit is contained in:
parent
ba04a46cae
commit
589aa351a8
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ class UninstallOperation extends SolverOperation
|
||||||
*/
|
*/
|
||||||
public function show($lock)
|
public function show($lock)
|
||||||
{
|
{
|
||||||
return 'Uninstalling '.$this->package->getPrettyName().' ('.$this->package->getFullPrettyVersion().')';
|
return ($lock ? 'Removing ' : 'Uninstalling ').$this->package->getPrettyName().' ('.$this->package->getFullPrettyVersion().')';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -56,7 +56,7 @@ update
|
||||||
Loading composer repositories with package information
|
Loading composer repositories with package information
|
||||||
Updating dependencies
|
Updating dependencies
|
||||||
Lock file operations: 0 installs, 0 updates, 1 removal
|
Lock file operations: 0 installs, 0 updates, 1 removal
|
||||||
- Uninstalling b/b (1.0.0)
|
- Removing b/b (1.0.0)
|
||||||
Writing lock file
|
Writing lock file
|
||||||
Installing dependencies from lock file (including require-dev)
|
Installing dependencies from lock file (including require-dev)
|
||||||
Package operations: 0 installs, 0 updates, 2 removals
|
Package operations: 0 installs, 0 updates, 2 removals
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue