]> git.mxchange.org Git - friendica.git/commitdiff
Fix missing new in throw calls in Core\StorageManager
authorHypolite Petovan <hypolite@mrpetovan.com>
Mon, 7 Jan 2019 18:28:40 +0000 (13:28 -0500)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 21 Jan 2019 16:12:51 +0000 (11:12 -0500)
src/Core/StorageManager.php

index 932b4bb40078a50ffe937b7b2f479685908b95b6..415ee522b648086f540c8259867925fdb49e57f2 100644 (file)
@@ -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)) {