Fix missing new in throw calls in Core\StorageManager
This commit is contained in:
parent
722284ca8e
commit
25b8628762
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ class StorageManager
|
||||||
public static function move($dest, $tables = null)
|
public static function move($dest, $tables = null)
|
||||||
{
|
{
|
||||||
if (is_null($dest) || empty($dest)) {
|
if (is_null($dest) || empty($dest)) {
|
||||||
throw Exception('Can\'t move to NULL storage backend');
|
throw new \Exception('Can\'t move to NULL storage backend');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_null($tables)) {
|
if (is_null($tables)) {
|
||||||
|
|
Loading…
Reference in a new issue