aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/appinfo
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2023-12-29 10:16:08 +0100
committerJohn Molakvoæ <skjnldsv@protonmail.com>2024-01-09 11:08:46 +0100
commit9e4c9b97ddf96b1a9379f5bdc5ecd1c24021291c (patch)
treea26e1bb0650fc4701aab4f1a444ea3ca8322695d /apps/dav/appinfo
parent18399fc1cf01bdabfeecba1fbf3923dc30db4229 (diff)
downloadnextcloud-server-9e4c9b97ddf96b1a9379f5bdc5ecd1c24021291c.tar.gz
nextcloud-server-9e4c9b97ddf96b1a9379f5bdc5ecd1c24021291c.zip
fix(psalm): update baseline and suppress unnecessary issues
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/dav/appinfo')
-rw-r--r--apps/dav/appinfo/v2/publicremote.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/dav/appinfo/v2/publicremote.php b/apps/dav/appinfo/v2/publicremote.php
index f9a3b23e0b8..0ef9bda8dda 100644
--- a/apps/dav/appinfo/v2/publicremote.php
+++ b/apps/dav/appinfo/v2/publicremote.php
@@ -109,13 +109,20 @@ $server = $serverFactory->createServer($baseuri, $requestUri, $authPlugin, funct
$fileId = $share->getNodeId();
// FIXME: should not add storage wrappers outside of preSetup, need to find a better way
+ /** @psalm-suppress InternalMethod */
$previousLog = Filesystem::logWarningWhenAddingStorageWrapper(false);
+
+ /** @psalm-suppress MissingClosureParamType */
Filesystem::addStorageWrapper('sharePermissions', function ($mountPoint, $storage) use ($share) {
return new PermissionsMask(['storage' => $storage, 'mask' => $share->getPermissions() | \OCP\Constants::PERMISSION_SHARE]);
});
+
+ /** @psalm-suppress MissingClosureParamType */
Filesystem::addStorageWrapper('shareOwner', function ($mountPoint, $storage) use ($share) {
return new PublicOwnerWrapper(['storage' => $storage, 'owner' => $share->getShareOwner()]);
});
+
+ /** @psalm-suppress InternalMethod */
Filesystem::logWarningWhenAddingStorageWrapper($previousLog);
OC_Util::tearDownFS();