diff options
Diffstat (limited to 'core/command/db')
-rw-r--r-- | core/command/db/converttype.php | 2 |
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], |