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

Fix warning

This commit is contained in:
Jordi Boggiano 2012-03-18 22:58:53 +01:00
parent 39f16fb7ff
commit 72b7b169e7

View file

@ -35,7 +35,7 @@ class VcsRepository extends ArrayRepository
$this->url = $config['url'];
$this->io = $io;
$this->type = $config['type'];
$this->type = isset($config['type']) ? $config['type'] : 'vcs';
}
public function setDebug($debug)