summaryrefslogtreecommitdiffstats
path: root/core/command/db
diff options
context:
space:
mode:
Diffstat (limited to 'core/command/db')
-rw-r--r--core/command/db/converttype.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php
index 99f2807feee..b445378783a 100644
--- a/core/command/db/converttype.php
+++ b/core/command/db/converttype.php
@@ -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],