mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
fix(FileAccess): Run cs:fix
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
This commit is contained in:
parent
d8c6f8d18e
commit
5689af5a94
2 changed files with 3 additions and 5 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -8,8 +8,6 @@ declare(strict_types=1);
|
|||
*/
|
||||
namespace OCP\Files\Cache;
|
||||
|
||||
use OCP\DB\Exception;
|
||||
|
||||
/**
|
||||
* Low level access to the file cache.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue