diff options
author | Andreas Fischer <bantu@owncloud.com> | 2014-03-31 18:20:24 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@owncloud.com> | 2014-03-31 18:20:24 +0200 |
commit | e67cf99cef596da7db5171730523e110a1a055d0 (patch) | |
tree | 96175a858a23879895d4e7cfe75510cb2dcc83e1 | |
parent | 5dbbe6d08b6046777e20761057725f24f841e722 (diff) | |
download | nextcloud-server-e67cf99cef596da7db5171730523e110a1a055d0.tar.gz nextcloud-server-e67cf99cef596da7db5171730523e110a1a055d0.zip |
\InvalidArgumentException is in root namespace.
-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], |