1
0
Fork 0

fixed installer interface

pull/19/head
everzet 2011-09-21 00:46:19 +03:00
parent 9deb10361f
commit 6ce0132259
1 changed files with 2 additions and 4 deletions

View File

@ -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);
}