Make config non optional, fixes #8896
parent
b27c4b2472
commit
d42e12c514
|
@ -584,7 +584,7 @@ class Factory
|
||||||
* @param array $options Array of options passed directly to HttpDownloader constructor
|
* @param array $options Array of options passed directly to HttpDownloader constructor
|
||||||
* @return HttpDownloader
|
* @return HttpDownloader
|
||||||
*/
|
*/
|
||||||
public static function createHttpDownloader(IOInterface $io, Config $config = null, $options = array())
|
public static function createHttpDownloader(IOInterface $io, Config $config, $options = array())
|
||||||
{
|
{
|
||||||
static $warned = false;
|
static $warned = false;
|
||||||
$disableTls = false;
|
$disableTls = false;
|
||||||
|
|
Loading…
Reference in New Issue