1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-09 00:22:53 +00:00

Run cs fixer and update config to latest master

This commit is contained in:
Jordi Boggiano 2016-04-11 15:06:57 +01:00
parent b9ce06f46b
commit 3b0a1c6f70
25 changed files with 76 additions and 69 deletions

View file

@ -13,7 +13,6 @@
namespace Composer\Test;
use Composer\Config;
use Composer\Downloader\TransportException;
class ConfigTest extends \PHPUnit_Framework_TestCase
{
@ -252,7 +251,8 @@ class ConfigTest extends \PHPUnit_Framework_TestCase
'file://myserver.localhost/mygit.git',
'file://example.org/mygit.git',
);
return array_combine($urls, array_map(function($e) { return array($e); }, $urls));
return array_combine($urls, array_map(function ($e) { return array($e); }, $urls));
}
/**
@ -270,9 +270,10 @@ class ConfigTest extends \PHPUnit_Framework_TestCase
'svn://1.2.3.4/trunk',
'git://5.6.7.8/git.git',
);
return array_combine($urls, array_map(function($e) { return array($e); }, $urls));
return array_combine($urls, array_map(function ($e) { return array($e); }, $urls));
}
/**
* @group TLS
*/