fix(FileAccess): Run cs:fix

Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
Marcel Klehr 2025-04-01 10:50:55 +02:00
parent d8c6f8d18e
commit 5689af5a94
2 changed files with 3 additions and 5 deletions

View file

@ -196,9 +196,9 @@ class FileAccess implements IFileAccess {
$rootId = (int)$row['root_id'];
$overrideRoot = $rootId;
if ($rewriteHomeDirectories && in_array($row['mount_provider_class'], [
\OC\Files\Mount\LocalHomeMountProvider::class,
\OC\Files\Mount\ObjectHomeMountProvider::class,
], true)) {
\OC\Files\Mount\LocalHomeMountProvider::class,
\OC\Files\Mount\ObjectHomeMountProvider::class,
], true)) {
// Only crawl files, not cache or trashbin
$qb = $this->getQuery();
try {

View file

@ -8,8 +8,6 @@ declare(strict_types=1);
*/
namespace OCP\Files\Cache;
use OCP\DB\Exception;
/**
* Low level access to the file cache.
*