diff --git a/src/Composer/Command/UpdateCommand.php b/src/Composer/Command/UpdateCommand.php index 69640bd3d..cc0960504 100644 --- a/src/Composer/Command/UpdateCommand.php +++ b/src/Composer/Command/UpdateCommand.php @@ -13,7 +13,6 @@ namespace Composer\Command; use Composer\Installer; -use Composer\Script\EventDispatcher; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; @@ -50,8 +49,7 @@ EOT { $composer = $this->getComposer(); $io = $this->getApplication()->getIO(); - $eventDispatcher = new EventDispatcher($composer, $io); - $install = Installer::create($io, $composer, $eventDispatcher); + $install = Installer::create($io, $composer); return $install->run( (Boolean)$input->getOption('prefer-source'),