nextcloud/tests/lib/Files/ObjectStore/LocalTest.php
Josh 07e0a49df6
chore: drop no longer necessary import
Signed-off-by: Josh <josh.t.richards@gmail.com>
2026-03-28 07:44:40 -04:00

22 lines
470 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace Test\Files\ObjectStore;
use OC\Files\Storage\Temporary;
use OCP\Files\ObjectStore\IObjectStore;
class LocalTest extends ObjectStoreTestCase {
/**
* @return IObjectStore
*/
protected function getInstance() {
$storage = new Temporary();
return new StorageBackedObjectStore($storage);
}
}