From e67cf99cef596da7db5171730523e110a1a055d0 Mon Sep 17 00:00:00 2001 From: Andreas Fischer Date: Mon, 31 Mar 2014 18:20:24 +0200 Subject: [PATCH] \InvalidArgumentException is in root namespace. --- core/command/db/converttype.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/command/db/converttype.php b/core/command/db/converttype.php index 99f2807fee..b445378783 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],