]> git.mxchange.org Git - friendica.git/commitdiff
Fix storage backend class names
authorfabrixxm <fabrix.xm@gmail.com>
Fri, 14 Dec 2018 17:03:16 +0000 (18:03 +0100)
committerHypolite Petovan <hypolite@mrpetovan.com>
Mon, 21 Jan 2019 14:12:32 +0000 (09:12 -0500)
This should be tested on all supported PHP versions

src/Core/StorageManager.php

index 4c7b151bf7d1d49052dfa8e26b37426de7e1e946..a71e2473cda5efa61baa4a4562ae2c4f69ee4fa2 100644 (file)
@@ -17,8 +17,8 @@ use Friendica\Core\Logger;
 class StorageManager
 {
        private static $default_backends = [
-               'Filesystem' => Friendica\Model\Storage\Filesystem::class,
-               'Database' => Friendica\Model\Storage\Database::class,
+               'Filesystem' => \Friendica\Model\Storage\Filesystem::class,
+               'Database' => \Friendica\Model\Storage\Database::class,
        ];
 
        private static $backends = [];