summaryrefslogtreecommitdiffstats
path: root/core/command/db
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@owncloud.com>2014-03-31 18:20:24 +0200
committerAndreas Fischer <bantu@owncloud.com>2014-03-31 18:20:24 +0200
commite67cf99cef596da7db5171730523e110a1a055d0 (patch)
tree96175a858a23879895d4e7cfe75510cb2dcc83e1 /core/command/db
parent5dbbe6d08b6046777e20761057725f24f841e722 (diff)
downloadnextcloud-server-e67cf99cef596da7db5171730523e110a1a055d0.tar.gz
nextcloud-server-e67cf99cef596da7db5171730523e110a1a055d0.zip
\InvalidArgumentException is in root namespace.
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],