/**
  * @param \Composer\Package\PackageInterface $package
  */
 protected function removeCode(\Composer\Package\PackageInterface $package)
 {
     $downloadPath = $this->getInstallPath($package);
     $this->downloadManager->remove($package, $downloadPath);
 }
 /**
  * @param PackageInterface $package
  */
 protected function removeCode(PackageInterface $package)
 {
     $this->downloadManager->remove($package, $this->getInstallPath($package));
 }