From 6ce013225986c1905bda956b274c598418bfadb6 Mon Sep 17 00:00:00 2001 From: everzet Date: Wed, 21 Sep 2011 00:46:19 +0300 Subject: [PATCH] fixed installer interface --- src/Composer/Installer/InstallerInterface.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/Composer/Installer/InstallerInterface.php b/src/Composer/Installer/InstallerInterface.php index edd9246f4..0a3154946 100644 --- a/src/Composer/Installer/InstallerInterface.php +++ b/src/Composer/Installer/InstallerInterface.php @@ -20,8 +20,6 @@ use Composer\Downloader\DownloaderInterface; */ interface InstallerInterface { - function isInstalled(PackageInterface $package, DownloaderInterface $sourceDownloader = null, - DownloaderInterface $distDownloader = null); - function install(PackageInterface $package, DownloaderInterface $sourceDownloader = null, - DownloaderInterface $distDownloader = null); + function isInstalled(PackageInterface $package); + function install(PackageInterface $package); }