1
0
Fork 0

Remove public keyword from Downloader and Installer interface methods

pull/17/head
Kirill chEbba Chebunin 2011-09-16 01:26:32 +04:00
parent e317b4f8ef
commit 74a45cfb8c
2 changed files with 2 additions and 2 deletions

View File

@ -31,5 +31,5 @@ interface DownloaderInterface
*
* @throws \UnexpectedValueException
*/
public function download(PackageInterface $package, $path, $url, $checksum = null);
function download(PackageInterface $package, $path, $url, $checksum = null);
}

View File

@ -29,5 +29,5 @@ interface InstallerInterface
* @param DownloaderInterface $downloader
* @param string $type
*/
public function install(PackageInterface $package, DownloaderInterface $downloader, $type);
function install(PackageInterface $package, DownloaderInterface $downloader, $type);
}