fix(files_sharing): remove unnecessary array_values in MountProvider

Signed-off-by: Salvatore Martire <4652631+salmart-dev@users.noreply.github.com>
pull/56537/head
Salvatore Martire 2025-10-30 09:31:36 +07:00
parent ff28ac7ea2
commit 2ae7c3ecae
2 changed files with 1 additions and 4 deletions

@ -171,7 +171,7 @@ class MountProvider implements IMountProvider {
$result[] = $tmp2;
}
return array_values($result);
return $result;
}
/**

@ -1692,9 +1692,6 @@
<code><![CDATA[new View('/' . $parentShare->getShareOwner() . '/files')]]></code>
<code><![CDATA[new View('/' . $userId . '/files')]]></code>
</InternalMethod>
<RedundantFunctionCall>
<code><![CDATA[array_values]]></code>
</RedundantFunctionCall>
</file>
<file src="apps/files_sharing/lib/Scanner.php">
<DeprecatedInterface>