\InvalidArgumentException is in root namespace.

This commit is contained in:
Andreas Fischer 2014-03-31 18:20:24 +02:00
parent 5dbbe6d08b
commit e67cf99cef
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ class ConvertType extends Command {
$password = $input->getOption('password');
if (!isset(self::$type2driver[$type])) {
throw new InvalidArgumentException('Unknown type: '.$type);
throw new \InvalidArgumentException('Unknown type: '.$type);
}
$connectionParams = array(
'driver' => self::$type2driver[$type],