From 25b8628762ad68ae784e1d60d1af74201f086265 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Mon, 7 Jan 2019 13:28:40 -0500 Subject: [PATCH] Fix missing new in throw calls in Core\StorageManager --- src/Core/StorageManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/StorageManager.php b/src/Core/StorageManager.php index 932b4bb40..415ee522b 100644 --- a/src/Core/StorageManager.php +++ b/src/Core/StorageManager.php @@ -118,7 +118,7 @@ class StorageManager public static function move($dest, $tables = null) { 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)) {