Cleanup namespace

This commit is contained in:
Philipp 2021-10-27 20:06:04 +02:00
parent d34497e69b
commit 7c38647573
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
2 changed files with 5 additions and 5 deletions

View File

@ -33,7 +33,7 @@ class Storage extends \Asika\SimpleConsole\Console
{ {
protected $helpOptions = ['h', 'help', '?']; protected $helpOptions = ['h', 'help', '?'];
/** @var \Friendica\Core\Storage\Repository\StorageManager */ /** @var StorageManager */
private $storageManager; private $storageManager;
/** /**

View File

@ -195,11 +195,11 @@ class StorageManager
$this->backendInstances[$name] = new Type\Database($this->dba); $this->backendInstances[$name] = new Type\Database($this->dba);
break; break;
// at least, try if there's an addon for the backend // at least, try if there's an addon for the backend
case \Friendica\Core\Storage\Type\SystemResource::getName(): case Type\SystemResource::getName():
$this->backendInstances[$name] = new \Friendica\Core\Storage\Type\SystemResource(); $this->backendInstances[$name] = new Type\SystemResource();
break; break;
case \Friendica\Core\Storage\Type\ExternalResource::getName(): case Type\ExternalResource::getName():
$this->backendInstances[$name] = new \Friendica\Core\Storage\Type\ExternalResource(); $this->backendInstances[$name] = new Type\ExternalResource();
break; break;
default: default:
$data = [ $data = [