CS fixes
parent
2e75cde60a
commit
3d9daea6a0
|
@ -61,7 +61,7 @@ class Factory
|
|||
}
|
||||
|
||||
/**
|
||||
* @param string $home
|
||||
* @param string $home
|
||||
* @return string
|
||||
*/
|
||||
protected static function getCacheDir($home)
|
||||
|
@ -411,8 +411,8 @@ class Factory
|
|||
}
|
||||
|
||||
/**
|
||||
* @param Config $config The configuration
|
||||
* @param Downloader\DownloadManager $dm Manager use to download sources
|
||||
* @param Config $config The configuration
|
||||
* @param Downloader\DownloadManager $dm Manager use to download sources
|
||||
* @return Archiver\ArchiveManager
|
||||
*/
|
||||
public function createArchiveManager(Config $config, Downloader\DownloadManager $dm = null)
|
||||
|
|
|
@ -234,10 +234,9 @@ class InstallationManager
|
|||
public function notifyInstalls(IOInterface $io)
|
||||
{
|
||||
foreach ($this->notifiablePackages as $repoUrl => $packages) {
|
||||
$repositoryName = parse_url ($repoUrl, PHP_URL_HOST);
|
||||
if ($io->hasAuthentication ($repositoryName))
|
||||
{
|
||||
$auth = $io->getAuthentication ($repositoryName);
|
||||
$repositoryName = parse_url($repoUrl, PHP_URL_HOST);
|
||||
if ($io->hasAuthentication($repositoryName)) {
|
||||
$auth = $io->getAuthentication($repositoryName);
|
||||
$authStr = base64_encode($auth['username'] . ':' . $auth['password']);
|
||||
$authHeader = 'Authorization: Basic '.$authStr;
|
||||
}
|
||||
|
|
|
@ -79,10 +79,10 @@ class ArchiveManagerTest extends ArchiverTest
|
|||
|
||||
unlink($target);
|
||||
}
|
||||
|
||||
|
||||
protected function getTargetName(PackageInterface $package, $format, $fileName = null)
|
||||
{
|
||||
if(null === $fileName) {
|
||||
if (null === $fileName) {
|
||||
$packageName = $this->manager->getPackageFilename($package);
|
||||
} else {
|
||||
$packageName = $fileName;
|
||||
|
|
Loading…
Reference in New Issue