Fix tests
parent
881ec8c751
commit
568d9206cc
|
@ -16,6 +16,7 @@ use Composer\Installer\InstallationManager;
|
||||||
use Composer\Repository\RepositoryInterface;
|
use Composer\Repository\RepositoryInterface;
|
||||||
use Composer\Repository\InstalledRepositoryInterface;
|
use Composer\Repository\InstalledRepositoryInterface;
|
||||||
use Composer\Package\PackageInterface;
|
use Composer\Package\PackageInterface;
|
||||||
|
use Composer\IO\IOInterface;
|
||||||
use Composer\DependencyResolver\Operation\InstallOperation;
|
use Composer\DependencyResolver\Operation\InstallOperation;
|
||||||
use Composer\DependencyResolver\Operation\OperationInterface;
|
use Composer\DependencyResolver\Operation\OperationInterface;
|
||||||
use Composer\DependencyResolver\Operation\UpdateOperation;
|
use Composer\DependencyResolver\Operation\UpdateOperation;
|
||||||
|
@ -115,4 +116,9 @@ class InstallationManagerMock extends InstallationManager
|
||||||
{
|
{
|
||||||
return $this->uninstalled;
|
return $this->uninstalled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function notifyInstalls(IOInterface $io)
|
||||||
|
{
|
||||||
|
// noop
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue