Change Uninstalling to Removing in lock operations
parent
ba04a46cae
commit
589aa351a8
|
@ -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…
Reference in New Issue